我想用.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
谢谢
答案 0 :(得分: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]