我正在尝试基于以下条件进行htaccess重定向:
Redirect all pages without "www" http://siteweb.com
to http://www.siteweb.com/index.html
Except http://siteweb.com/index.php
http://siteweb.com/index.php必须将
重定向到http://www.siteweb.com/index.php
实际上,我使用了这段代码[但上面有点错误:s]
RewriteCond %{HTTP_HOST} !^www.
RewriteRule !^/index.php$ http://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteCond %{REQUEST_URI} ^/index.php$ [NC]
RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1 [R=301,L]
提前感谢。