apache重定向设置
时间:2007-04-30 来源:kaka_sun
一
比如我的apache发布点为/usr/local/apache/htdocs
我想让/usr/local/apache/htdocs/a/下访问的文件重定向到http://www.abc.com/index.jsp
RedirectMatch ^/a/.*$ http://www.abc.com/index.jsp
二访问www.abc.com 则重定向到一个指定文件上
<VirtualHost 80>
ServerName www.abc.com
DocumentRoot "/home/"
ErrorLog logs/error_log
CustomLog logs/access_log combined RewriteEngine On
RewriteRule ^.*$ http://abc.net/aaaindex.jsp [R,QSA]
</VirtualHost>
ServerName www.abc.com
DocumentRoot "/home/"
ErrorLog logs/error_log
CustomLog logs/access_log combined RewriteEngine On
RewriteRule ^.*$ http://abc.net/aaaindex.jsp [R,QSA]
</VirtualHost>
相关阅读 更多 +