"index.php"
我在 CodeIgniter中从我的 URL 中删除时遇到问题。
我试图将我的 .htaccess 文件更改为:
RewriteEngine On
RewriteCond $1 !^(index\.php|(.*)\.swf|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
我也尝试更改$config['index_page']
为''
并更改$config['uri_protocol']
为,'REQUEST_URI'
但它不起作用。
我还将这些行添加到etc/apache2/apache2.conf
:
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
allow from all
但它也没有奏效。