我正在尝试根据这种情况进行 htaccess 重定向:
将所有没有“www”的页面重定向http://siteweb.com
到http://www.siteweb.com/index.html
除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]
提前致谢。