我有12个旧的url .html,并且想重定向到没有.html的新url,例如/blogpost.html> / blogpost。我在.htaccess中写的内容
答案 0 :(得分:0)
使用重定向:
Redirect permanent /blogpost.html /blogpost
代替十二个Redirect语句(对于每个旧url一个),您也可以将它们填充为一个,尽管可能也会使RedirectMatch有点混乱:
RedirectMatch permanent ^/(blogpost|oldpage|ancienturl|longago)\.html$ /$1
有关详细信息,请参见http://httpd.apache.org/docs/current/mod/mod_alias.html#redirect和http://httpd.apache.org/docs/current/mod/mod_alias.html#redirectmatch。