joomla 1.5 上的 302 .htaccess 重定向
将我的整个网站临时重定向到 joomla 中的子域的最佳方法是什么? 例如,将 mydomain.com
(包括我的所有网站页面)重定向到 offline.mydomain.com
。
我应该在 .htaccess 中添加什么字符串?
我想确保打开重定向时所有访问者都无法访问 mydomain.com
以及所有子文件夹和文件。
What's the best way to temporary redirect my entire site to a subdomain in joomla?
For example redirect mydomain.com
(including all my website pages) to offline.mydomain.com
.
What string should I add in .htaccess?
I want to be sure that all visitors are not able to visit mydomain.com
and all subfolder and files when redirect is on.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以放置一个包含以下内容的 .htacces:
这样除了 IP 127.0.0.1 的用户之外的每个人都会被它重定向。
You could place a .htacces with following content:
so everybody except the User with IP 127.0.0.1 will get redirected by it.