【发布时间】:2016-07-28 09:32:45
【问题描述】:
如何在 apache where 中编写 apache 重定向规则
http://www.example.com/8484/sdsdsd 或 http://www.example.com/8484/test
应该重定向到 www.example.com
【问题讨论】:
如何在 apache where 中编写 apache 重定向规则
http://www.example.com/8484/sdsdsd 或 http://www.example.com/8484/test
应该重定向到 www.example.com
【问题讨论】:
像这样:
RewriteEngine On
RewriteRule ^/8484/(.*)$ http://www.example.com [R,L]
每个虚拟主机只需要RewriteEngine On 一次即可激活重定向
【讨论】: