大家好,我试图从 url 中隐藏 index.php,就像这样:
我想要:mydomain.com/index.php/mycontroler
就像:mydomain.com/mycontroler
这是我的 .htaccess
Options -Multiviews
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|images|robots\.txt|css)
RewriteRule ^(.*)$ index.php?/$1 [L]
这是我的 conf.php
$config['index_page'] = '';
$config['uri_protocol'] = 'REQUEST_URI';
问题是它在本地运行良好,但在服务器上却不行
这是我的文件的处置
- bin
- etc
- mail
- public_ftp
- public_html
-- application
-- assets
-- system
-- .htaccess
-- index.php
帮助伙计们