0

这是我自动生成的 htaccess 文件

重写引擎开启

RewriteCond %{HTTP_HOST} ^m\.rgaads\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.m\.rgaads\.com$
RewriteRule ^/?$ "m\.rgaads\.com\/index\.html" [R=301,L]
4

1 回答 1

0

您可以添加DirectoryIndex以避免上述规则:

DirectoryIndex index.html

PS:如果在同一主机中使用,则需要http://输入目标URL或使用不带域名的目标:

RewriteEngine on

RewriteCond %{HTTP_HOST} ^(www\.)?m\.rgaads\.com$ [NC]
RewriteRule ^/?$ /index.html [R=301,L]
于 2013-09-20T12:36:03.407 回答