将网站重定向到插件域 - htaccess

时间:2016-06-24 05:33:34

标签: html wordpress .htaccess redirect url-redirection

我有一个主机,在同一主机下有一个主域和另外5个(Addon)域。 所有的网站都运行Wordpress。 我想将主域重定向到其中一个插件域,我有部分重定向问题,所有页面都重定向到正确的位置,但有些资源似乎进入无限重定向循环(wp-include css for例)。 我试过重定向:

RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} !^crossword\-clue\.com$ [NC,OR]
RewriteCond %{HTTP_HOST} !^crossword\-clues\.com$ [NC,OR]
RewriteCond %{HTTP_HOST} !^www\.wisely\-chosen\.com$ [NC,OR]
RewriteCond %{HTTP_HOST} !^wisely\-chosen\.com$ [NC,OR]
RewriteCond %{HTTP_HOST} !^www\.info\-beast\.com$ [NC,OR]
RewriteCond %{HTTP_HOST} !^info\-beast\.com$ [NC,OR]
RewriteCond %{HTTP_HOST} !^www\.crossword\-clues\.com$ [NC,OR]
RewriteCond %{HTTP_HOST} !^www\.quickinfo\.co\.il$ [NC,OR]
RewriteCond %{HTTP_HOST} !^www\.israwords\.co\.il$ [NC,OR]
RewriteCond %{HTTP_HOST} !^israwords\.co\.il$ [NC,OR]
RewriteCond %{HTTP_HOST} ^israwords\.com$ [NC,OR]
RewriteCond %{HTTP_HOST} ^www\.israwords\.com$ [NC]
RewriteRule ^(.*)$ http://www.israwords.co.il/$1 [R=301,L]

1 个答案:

答案 0 :(得分:1)

重定向

  • www.israwords.com

  • www.israwords.co.il

您可以使用:

RewriteEngine on

RewriteCond %{HTTP_HOST} ^(www\.)?israwords\.com$
RewriteRule ^ http://www.israwords.co.il%{REQUEST_URI} [L,R=301,NE]