如何让.htaccess文件将任何.org重定向到相应的.com?

时间:2012-10-21 14:43:40

标签: apache .htaccess redirect

我有一个.htaccess文件,现在看起来像这样:

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(.*).org$ [NC]

RewriteRule ^(.*)$ http://foo.com/$2 [R=301,L]

是否可以将变量放入“foo.com”位,只是重定向到输入的同一域,但使用.com而不是.org?

1 个答案:

答案 0 :(得分:0)

阅读文档通常有助于:RewriteRule directive

  

除了纯文本外,Substitution字符串还可以包含

     
      
  • 反向引用($ N)到RewriteRule模式
  •   
  • 对最后匹配的RewriteCond模式的反向引用(%N)
  •   
  • 服务器变量,如规则条件测试字符串(%{VARNAME})
  •   
  • 映射函数调用($ {mapname:key | default})
  •