将目录重定向到页面

时间:2016-12-15 13:21:27

标签: html wordpress .htaccess redirect

该网站目前在WordPress上,因此这些网页被列为路径,即Google上的www.xyz.com/content/。我们正在更改为Wordpress之外的新HTML网站。新页面是www.xyz.com/content.html(另外我们删除了htaccess中的html。

但是,如果有人使用旧页面引用从Google点击,则会出现500内部服务器错误。

有一种方法可以将所有目录(路径)重定向到特定页面,例如

将域/ /重定向到域/ ???

1 个答案:

答案 0 :(得分:0)

默认情况下,Redirect路径节点映射到新路径节点,因此第一条路径后的所有内容都会附加到目标网址。

尝试:

RedirectMatch 301 ^/abc/cba/ http://www.example.com/?

或者如果您更喜欢使用mod_rewrite而不是mod_alias:

RewriteEngine On
RewriteRule ^/?abc/cba/ http://www.example.com/? [R=301,L]