CodeIgniter前端不起作用



我购买了一个用CodeIgniter编写的房地产CMS,我将其上传到了我的托管帐户,但是当我尝试访问我的URL时,它不会显示前端部分。我知道URL重写或类似的问题存在问题,如果有人可以帮助我,我会很感激

顺便说一句,后端工作(immonador.esy.es/admin/index.php),但前端(immonador.esy.es.es/index.php)不起作用。这是我的.htaccess文件

<IfModule mod_rewrite.c>
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]
    RewriteBase /
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>

尝试此

<IfModule mod_rewrite.c>
  
    RewriteEngine on 
    Options +FollowSymLinks
  
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]
    RewriteBase /
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>

相关内容

最新更新