301重定向不工作,是我想要的可能吗?

时间:2013-01-11 15:33:34

标签: .htaccess

这是我的.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 

Redirect 301 http://whattodoindublin.com/ http://www.whattododirectory.com/category/dublin/

http://whattodoindublin.com/指向与http://www.whattododirectory.com/相同的文件夹,因此它加载了相同的内容,但我希望http://whattodoindublin.com/加载上述子目录,这可能吗?

1 个答案:

答案 0 :(得分:1)

来自Redirect Directive

  

语法:重定向[status] URL-path URL
  ...
  旧的URL路径是区分大小写(% - 解码)的路径以斜杠开头。不允许使用相对路径。

您只能将路径重定向到外部网址。也许在你的虚拟主机部分或.htaccess for whattodoindublin.com,你可以做到

Redirect 301 / http://www.whattododirectory.com/category/dublin/