通过 .htaccess 根据 URL 进行重定向

通过 .htaccess 根据 URL 进行重定向

我看到了这个:如何通过 htaccess 重定向 root 并且仅重定向 root?虽然很接近,但还不完全一样。

我正在重写一个网站,并希望能够从以下位置发送用户:

http://myfullurl.com

到:

http://mylandingpageurl.com

同时保留在以下位置测试站点的能力:

http://myfullurl.hostingprovider.com

答案1

像这样使用 mod_rewrite:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^myfullurl\.com$ [NC]
RewriteRule ^(.*)$ http://mylandingpageurl.com/$1 [R=301,L]

相关内容