使用.htaccess将已删除的目录/文件重定向到新位置

时间:2012-01-30 00:42:31

标签: .htaccess redirect codeigniter-url cloaking

如何修改我的.htaccess以将试图查看我们网站上的旧网页网址的用户定向到新版本?例如:

旧的无效网址:www.mysite.com/128

新网址:www.mysite.com/this-is-the-new-location/321

我希望www.mysite.com/128显示新的网页内容。

1 个答案:

答案 0 :(得分:0)

这就是它

//301 Redirect Old File
Redirect 301 www.mysite.com/128 www.mysite.com/this-is-the-new-location/321

//301 Redirect Entire Directory
RedirectMatch 301 www.mysite.com/128(.*) www.mysite.com/this-is-the-new-location/321/$1