如何使用 .htaccess 或 php 为子域设置根域镜像
我想要一个子域来镜像根域(例如:sub.root.com 镜像 root.com),并且我想通过 .htaccess 或 php 来完成此操作,首选 .htaccess。
I want a subdomain to mirror the root-domain (ex: sub.root.com mirroring root.com) and I want to accomplish this via .htaccess or php, with .htaccess prefered.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
RewriteCond %{ENV:REDIRECT_STATUS} ^$
RewriteCond %{HTTP_HOST} ^((子域)。)?([a-zA-Z0-9-]+.([a-zA-Z]{2,3}(: [0-9]+)?))$ [NC]
RewriteRule ^(.*)$ /%{REQUEST_URI} [QSA,L]
RewriteCond %{ENV:REDIRECT_STATUS} ^$
RewriteCond %{HTTP_HOST} ^((subdomain).)?([a-zA-Z0-9-]+.([a-zA-Z]{2,3}(:[0-9]+)?))$ [NC]
RewriteRule ^(.*)$ /%{REQUEST_URI} [QSA,L]
您不必编写任何 PHP 代码或修改
.htaccess
。您只需修改/etc/hosts
(Linux) 或%SystemRoot%/Windows/system32/drivers/etc/hosts
(Windows) 即可实现此目的you don't have to write any PHP code or modify
.htaccess
. you can accomplish this by just modifying/etc/hosts
(Linux) or%SystemRoot%/Windows/system32/drivers/etc/hosts
(Windows)