所以基本上,我目前在我的.htaccess
文件中有这个。
它重定向索引的所有变体并默认到我的主页。这给我带来了一些问题,我想重定向索引的所有变体并默认到我的 404 页面,即404.html
# Redirect all variations of index and default to www.domain.com/
# exception of index.php which should not be redirect
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+(default|index)\.(s?html?|pl|aspx?|cfm)[\s]+ [NC]
RewriteRule ^ /? [R=301,L]
我试过这样做,但不确定这是否是最好的方法:
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+(default|index)\.(s?html?|pl|aspx?|cfm)[\s]+ [NC]
RewriteRule ^ - [L,R=404]
我怎样才能修改我的代码来做到这一点?我是否还需要以[R=301,L]
某种方式更改为 404?