0

我将更改我的一个子域的 CNAME 记录,但我需要将来自此的所有流量(包括文件、页面等)重定向到新域上的新页面。

示例:将所有流量从 xxx.example.com 重定向到 www.example.com/xxx/xxx

4

1 回答 1

0

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

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On

RewriteCond %{HTTP_HOST} ^xxx\.xxx\.com$ [NC]
RewriteRule ^(.*)$ http://www.xxx.com/xxx/xxx/$1 [R=301,L]
于 2013-08-05T18:29:32.983 回答