重定向所有地址,但端口号上的地址除外

时间:2011-11-08 13:51:22

标签: apache redirect

我一直在apache中使用这种重定向

RewriteCond %{HTTP_HOST} !^www\.example\.com$ [NC]
RewriteRule ^/*(.*)$ http://www.example.com/$1 [R=301,NC]

直到现在还好。我需要在8080端口号上设置测试站点。如何从该重定向中排除8080。因此,www.example.com:8080不会重定向到www.example.com

感谢

1 个答案:

答案 0 :(得分:1)

RewriteCond %{SERVER_PORT}  ^80$

自: Administration Over SSL