我已经通过htaccess重写了网址,现在我想将该网址重定向到另一个网址。
现在我想将http://www.domain.com/tag/example-page
网址重定向到http://www.domain.com/tag/example
redirect 301 /tag/example-page http://www.domain.com/tag/example
请帮我解决这个问题。
以下是我的重写规则,我将其用于短网址
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
答案 0 :(得分:0)
将此规则作为root .htaccess中的第一条规则:
RedirectMatch 301 ^/tag/example-page/?$ /tag/example