泛目录教程(Apache泛目录反向代理)
同nginx一样,apache解析目录不需要安装任何东西,在配置文件里加入解析规则即可。
解析规则:
<IfModule mod_proxy.c>
ProxyPreserveHost On
ProxyRequests Off
ProxyPassMatch "^(/目录名.*)$" "http://ip/$1"
ProxyPass /目录名 http://ip/
ProxyPassReverse /目录名 http://ip/
</IfModule>
泛目录教程(Apache泛目录反向代理)
同nginx一样,apache解析目录不需要安装任何东西,在配置文件里加入解析规则即可。
解析规则:
<IfModule mod_proxy.c>
ProxyPreserveHost On
ProxyRequests Off
ProxyPassMatch "^(/目录名.*)$" "http://ip/$1"
ProxyPass /目录名 http://ip/
ProxyPassReverse /目录名 http://ip/
</IfModule>