是的,另一個這樣的。我嘗試了所有可以在搜索中找到的東西,但沒有運氣。刪除codeigniter的index.php
在我的httpd.conf(運行CentOS的和apache2的):
<VirtualHost *:80>
ServerName www.domain.com
ServerAlias domain.com *.domain.com
DocumentRoot /var/www/html/domain.com
</VirtualHost>
在我的htaccess在/var/www/html/domain.com:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
一切似乎是工作。
我已經嘗試添加
RewriteBase/
我試過的最後一行切換到:
RewriteRule ^(.*)$ /index.php/$1 [L]
什麼是你想在這裏實現? – praseodym
@praseodym他試圖將index.php移出CodeIgniter網址。 – Kenzo
正確。我試圖從http://domain.com/index.php/features 轉到http://domain.com/features –