将此内容添加到我的.htaccess文件中可以缩短URL并摆脱.shtml位。
RewriteEngine On
RewriteRule about about.shtml
但是,原始地址http://xxx/about.shtml也仍然存在。我不希望Google或任何人看到那个,所以我尝试将其重定向到重写的URL:
Redirect 301 /about.shtml /about
这在Firefox上无法正常工作,而在Google上却被重定向太多次,从而导致错误。也许正在某种循环中。
我不希望原始文件显示在网址中的任何位置(以.shtml结尾),所以不知道除了重定向之外还有什么。
谢谢!