我将更改其中一个子域的CNAME记录,但我需要将包含文件,页面等在内的所有流量重定向到新域中的新页面。
实施例: 将所有流量从xxx.example.com重定向到www.example.com/xxx/xxx
答案 0 :(得分:0)
通过httpd.conf
启用mod_rewrite和.htaccess,然后将此代码放在.htaccess
目录下的DOCUMENT_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]