将https:// / store重定向到https:// store。 /

问题描述 投票:0回答:1

因此,我的Web服务器的结构位于/var/www/html,而我的商店目录位于/var/www/html/store,这是因为我可以共享资源而无需使用链接,因为它会使PhPStorm感到困惑。

我想强迫任何试图访问https://<rootsite>/store的人重定向到https://store.<rootsite>/。如果有帮助,我已启用.htaccess,PHP和js。

php html .htaccess apache2
1个回答
0
投票

使用PHP的重定向功能来完成工作。

header('Location: https://store.<rootsite>/');
© www.soinside.com 2019 - 2024. All rights reserved.