我在使用godigndy上的codeigniter工作时遇到了问题。 我尝试了各种各样的东西,但似乎并不适合我。任何帮助,将不胜感激。
我的htaccess文件如下所示:
RewriteEngine on
RewriteBase /code-igniter/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
我已经更改了配置文件:
$config['index_page'] = "index.php?";
$config['uri_protocol'] = 'REQUEST_URI';
请帮忙!!
答案 0 :(得分:0)
<IfModule mod_rewrite.c>
RewriteEngine On
# If your page resides at
# http://www.example.com/code-igniter/
# then use
# RewriteBase /code-igniter/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
<强>配置/ config.php中强>
$config['index_page'] = '';
$config['uri_protocol'] = 'AUTO';