php-.htaccess子域重定向wordpress

如何启用此功能:

如果我输入:maggew.com/abcxyz
您将被重定向到mr.maggew.com/abcxyz

如果我输入:maggew.com/privacy
您将被重定向到mr.maggew.com/privacy

如果我输入:maggew.com/refund
您将被重定向到mr.maggew.com/refund

如果我输入:maggew.com/contact
您将被重定向到mr.maggew.com/contact

等…..等等….

我在1& 1上使用了共享主机,现在我有了一个数字海洋飞沫.
我尝试使用HTACCESS REDIRECT GENERATOR,但运气不佳.

这是我当前的.htaccess:

# REDIRECTS STORE
redirect 301 /shop http://mr.maggew.com/store
redirect 301 /market http://mr.maggew.com/store
redirect 301 /outlet http://mr.maggew.com/store
redirect 301 /bazaar http://mr.maggew.com/store
redirect 301 /boutique http://mr.maggew.com/store

# PROTECT WP-CONFIG.PHP
<files wp-config.php>
order allow,deny
deny from all
</files>

RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$- [L]

# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$$1wp-admin/ [R=301,L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$$2 [L]
RewriteRule . index.php [L]

#force subdomain of mr.maggew.com
RewriteCond %{HTTP_HOST} !^mr\.
RewriteRule (.*) http://mr.maggew.com%{REQUEST_URI} [R,L,QSA]

解决方法:

选项1

before you do all the folder specific redirects you need to redirect the domain first
RewriteEngine On
RewriteCond %{HTTP_HOST} ^http://www\.domain.com\/ [NC]
RewriteRule ^(.*)$http://sub.domain.com/$1 [R=301,L]

选项2

如果您的内容中有旧的url实例,则可以使用类似的方法更新到新的实例.我不确定这有多有效.

http://www.wpbeginner.com/plugins/how-to-update-urls-when-moving-your-wordpress-site/

选项3

或者可以使用http://wp-cli.org/修改数据库实例,也可以使用mysql命令行搜索和替换.

您来自内容和页面引用URL的所有URL都存储在数据库中.如果您知道自己在做什么,可以进行大规模搜索并替换.

上一篇:php-拒绝使用htaccess直接访问文件


下一篇:php-.htaccess仅当GET参数存在时才重定向