0

我想使用 .htaccess 重定向以下任何内容:

http://domain.com/folder
http://domain.com/folder/
http://domain.com/folder/index.html
http://domain.com/folder/index.php

http://another-domain.com/file.php?var=xyz

我确实了解如何重写文件到文件或文件夹到文件夹,但我错过了如何从文件夹重定向到其他域的文件 URL

谢谢

4

1 回答 1

1

启用mod_rewrite.htaccess通过httpd.conf然后将此代码放入您的 DOCUMENT_ROOT/.htaccess文件中:

RewriteEngine On

RewriteCond %{HTTP_HOST} ^(www\.)?domain\.com$ [NC]
RewriteRule ^folder(/.*|)$ http://another-domain.com/file.php?var=xyz [L,NC,R=301]

推荐阅读:Apache mod_rewrite 简介

于 2013-10-01T12:51:24.040 回答