我更改了
$config['index_page'] = 'index.php';
自
$config['index_page'] = '';
和
$config['uri_protocol'] = 'REQUEST_URI';
自
$config['uri_protocol'] = 'AUTO';
在.htaccess
我写了这段代码。 但是index.php
无法从URL
中删除.
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
将base_url
设置为
$config['base_url'] = 'http://localhost/base_folder/
使用此.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /base_folder
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>