我們可以利用Apache的.htaccess重寫來實現301跳轉,具體操作方法是--將後台的根目錄文件夾中的.htaccess文件添加內容為:
代碼如下 復制代碼
<IfModulemod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.test\.com$ [NC]
RewriteRule ^(.*)$ http://xxx.test.com [R=301,L]
</IfModule>