我有以下结构:
我想要的是,如果人们访问http://m.website.com仍然在浏览器中看到该URL,但它会将文件加载到移动目录中。这可能吗?
(或者有没有人有关于.htaccess的非常好的教程,所以我可以学习如何做到这一点?)
答案 0 :(得分:2)
尝试将以下内容添加到我假设为m.website.com
子域的根目录中的htaccess文件中。
RewriteEngine on
RewriteBase /
#if they came on mobile domain
RewriteCond %{HTTP_HOST} ^m\.website\.com$ [NC]
#rewrite request to Mobile folder
RewriteRule (.*) mobile/$1 [L]