|
我的apache规则如下
- [/font]
- [font=微软雅黑]RewriteEngine on
- RewriteBase /
- RewriteCond $1 !^(index\.php|favicon\.ico)
- RewriteRule ^(.*)$ index.php/$1 [L]
- #301跳转
- Options +FollowSymLinks
- RewriteCond %{HTTP_HOST} !^www\.domain\.com$ [NC]
- RewriteCond %{HTTP_HOST} !^$
- RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
- [/font]
- [font=微软雅黑]
复制代码
跳转都是正常的 但是输入 domain.com 之后他跳转的地址到了
www.domain.com/index.php/
为什么呢??? 希望高手能帮我解决一下! 灰常感谢
|
|