多个301重定向htaccess

时间:2012-06-08 13:39:35

标签: .htaccess mod-rewrite

我最近更改了部分网页的文件名。例如

work1.html到acn-website.html

work2.html到inkdrawn-website.html

我目前在htaccess文件中有以下内容;

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^fullfatdesigns\.co.uk$
RewriteRule (.*) http://www.fullfatdesigns.co.uk/$1 [R=301,L] 

ErrorDocument 404 /error/404.php  
ErrorDocument 403 /error/403.php 

如何将多个301重定向插入现有文件?

谢谢 韦恩

1 个答案:

答案 0 :(得分:1)

你可以添加

RewriteRule oldPage\.html http://www.fullfatdesigns.co.uk/newPage.html [R=301,L]
每次重定向RewriteEngine on之后