我目前正在使用“xyzservice.abcindia.local”作为使用反向代理的网站,现在我想要实现的是,当我点击“xyzservice.abcindia.local”时,它应该重定向到“xyzservice.abcindia.com/folder1/folder2/path”请让我知道如何实现重定向,请检查我当前的 apache 配置。
操作系统:Debian 10
<IfModule mod_ssl.c>
<虚拟主机 *:443>
ServerAdmin webmaster@localhost
ServerName xyzservice.abcindia.local
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
ProxyRequests Off
ProxyPreserveHost On
ProxyPass / http://xyzservice.abcindia.local
ProxyPassReverse / http://xyzservice.abcindia.local
SSLEngine on
SSLCertificateFile /etc/ssl/certs/test.crt
SSLCertificateKeyFile /etc/ssl/certs/test.key
<虚拟主机 *:80>
ServerName xyzservice.abcindia.local
Redirect Permanent / https://xyzservice.abcindia.local
答案1
您是否尝试过创建一个 HTML 页面并放入根目录来为您执行重定向?
请关注此链接。