目前,我使用下面的代码以消除我的网址字“索引” - 然而,问题是,它允许两个版本:一个没有和一个与[文字] - 因此,我引用没有一个(在HTML) - 但用户仍然可以键入一个字。
我怎样才能彻底从索引页擦字“索引”: http://example.com/index[.html]
去http://example.com/index
而是应该真正去http//:example.com
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*)/index$ $1/ [R=301]
RewriteCond %{REQUEST_URI} /$
RewriteRule (.*)/ $1 [R=301]