我需要.htaccess
代码来 301 重定向https://www.example.com
到http://www.example.org
。
谢谢!
答案1
在您的 .htacess 文件中,输入以下内容:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.example.com [NC]
RewriteRule ^(.*)$ http://example.org/$1 [L,R=301,NC]