📌  相关文章
📜  htaccess 将旧域重定向到新域 - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:12.429000             🧑  作者: Mango

代码示例1
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^OLDDOMAIN\.com$ [NC]
RewriteRule ^(.*)$ http://NEWDOMAIN.com [R=301,L]