4

我正在使用 CodeIgnter,因此我的所有链接都类似于base.com/index.php/home/indexor www.base.com/index.php/home/index。我只想尽可能地显示它们。我base.com/home/index试过在互联网上查看,从他们两个那里得到了 htacces 的重写:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$0 [PT,L]  
RewriteCond %{HTTP_HOST} ^domain\.com\$ [OR]
RewriteCond %{HTTP_HOST} ^www\.domain\.com\$
RewriteRule ^/?$ "http\:\/\/domain\.com\/" [R=301,L]

RewriteEngine on
RewriteCond %{HTTP_HOST} !^domain\.com$ [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L]

将它们分开放置,它们可以工作。但是它们一起不会做我需要他们做的事情。有人知道解决方案吗?谢谢。

4

1 回答 1

7

对于 CI,您需要类似于您的第一组规则,但没有重定向。但是重定向需要在路由发生之前发生,所以尝试:

RewriteEngine On

# redirect www to non-www
RewriteCond %{HTTP_HOST} ^www\.base\.com$ [NC]
RewriteRule ^(.*)$ http://base.com/$1 [L,R=301]

# redirect direct requests to /index.php to remove it
RewriteCond %{THE_REQUEST} \ /index\.php/?([^\?\ ]*)
RewriteRule ^ http://base.com/%1 [L,R=301]

# internally route to /index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [PT,L]  
于 2013-10-01T21:25:30.043 回答