在 .htaccess 中,我看到如何重写/index.html以指向主域:
RewriteEngine on
RewriteCond %{THE_REQUEST} ^.*\/index\.html?\ HTTP/
RewriteRule ^(.*)index\.html?$ "/$1" [R=301,L]
我也了解 .htaccess 如何防止网站在 WWW 下被索引,而没有它
RewriteEngine on
rewritecond %{http_host} ^mycustomcloset.com [nc]
rewriterule ^(.*)$ http://www.mycustomcloset.com/$1 [r=301,nc]
但是你如何同时做到这两点呢?
换句话说,我希望mycustomcloset.com和mycustomcloset.com/index.html都指向http://www.mycustomcloset.com。