我尝试使用以下设置配置Apache webserver httpd.conf,将所有index.html重定向到根文件夹。它能够成功重定向,但它始终指向testsite.com//而不是testsite.com/。知道为什么它继续转发到2斜杠'/'的网址?感谢您的建议,谢谢!
RewriteEngine On
RewriteRule ^index\.html$ / [R=301,L]
RewriteRule ^(.*)/index\.html$ $1 [R=301,L]
答案 0 :(得分:0)
删除那个怪物并使用:
DirectoryIndex index.html
还缺少资源:
FallBackResource /index.html