Apache 代理设置二级目录
时间: 2023-11-08 14:05:56 浏览: 165
要在 Apache 中代理二级目录,你需要在 Apache 配置文件中添加代理规则,并将二级目录作为代理规则的路径。
以下是在 CentOS 8 上代理二级目录的步骤:
1. 打开 Apache 配置文件 `/etc/httpd/conf/httpd.conf`,并添加以下配置:
```
ProxyPass "/yourdir/" "http://localhost:8080/"
ProxyPassReverse "/yourdir/" "http://localhost:8080/"
```
上述配置中的 `/yourdir/` 是你要代理的二级目录路径,`localhost:8080` 是你要代理的地址和端口。
2. 重新启动 Apache:
```
sudo systemctl restart httpd
```
现在,Apache 已经代理了二级目录,你可以使用 `http://yourdomain.com/yourdir/` 访问代理的地址和端口。
阅读全文