1

我的站点 A 中有一个页面 http://www.siteA.com/1987/title.html

我想 301 将上面的页面重定向到外部站点 siteB 中的页面,如下面的示例所示 http://www.siteB.com/page/title3.html

我想在 htacess 中执行此操作,而不是在 php 中

我努力了

#redirect 301 /1987/title.html http://www.siteB.com/page/title3.html

这似乎对我不起作用

4

1 回答 1

2

通过启用 mod_rewrite 和 .htaccess httpd.conf,然后将此代码放在您.htaccessDOCUMENT_ROOT目录下:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteCond %{HTTP_HOST} ^www\.siteA\.com$ [NC]
RewriteRule ^1987/title\.html$ http://www.siteB.com/page/title3.html [L,R=301,NC]
于 2013-04-25T17:50:43.027 回答