|
隐藏 index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|statics|robots\.txt|error\.png)
RewriteRule ^(.*)$ /index.php/$1 [L]
强制url 尾部加/
<IfModule mod_rewrite.c> RewriteCond %{REQUEST_URI} /+[^\.]+$ RewriteRule ^(.+[^/])$ %{REQUEST_URI}/ [R=301,L]</IfModule>
自动加上www
RewriteCond %{http_host} ^xx.com [NC]
RewriteRule ^(.*)$ http://www.xx.com/$1 [R=301,L]
怎么把三个统一 起来 我没试成功,请大家帮忙看下! |
|