我有一个网站:www.example.pro - 包含以下网页:www.example.pro/contact-us/和www.example.pro/about /
我希望此网站的每个网址都重定向到:www.example.com
示例:打开www.example.pro/about/时 - 它会重定向到www.example.com(而不是像你想的那样www.example.com/about/)。
这是我目前的HTACCESS:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
RewriteCond %{HTTP_HOST} ^example\.pro$ [OR]
RewriteCond %{HTTP_HOST} ^www\.example\.pro$
RewriteRule ^(.*)$ "http\:\/\/www\.example\.com\/$1" [R=301,L]
请帮我解决这个问题!
答案 0 :(得分:0)
wordpress部分是问题所在。
无论我编写什么htaccess代码都没关系。
解决方案很简单...删除所有htaccess代码并写入:
RewriteRule ^ http://www.yellowheadinc.com [R=301,L]
感谢不相关的投票结果:)!