我希望每个人都做得很好,我需要帮助,我使用Wordpress上一版本,我需要为我的网站定义我的主要默认域名示例MyWordpressSite.com和所有停车域转到MyWordpressSite.com/LandingPage/以任何方式定义一行中的所有域名并重定向到LandingPage?我不想在htaccess或其他选项中以域的方式定义域名?
感谢您提供任何帮助!
此致 曼尼
答案 0 :(得分:0)
假设您使用的是Apache,那么您需要一个负面的模式:
RewriteEngine on
#usually need next line though modify if WordPress is running in a subfolder
RewriteBase /
RewriteCond %{HTTP_HOST} !^your\.domain\.tld$
RewriteRule ^ http://your.domain.tld/landing-page/ [L,R=301]
对您的非主域名的任何请求都将被永久重定向到该页面。