我有一个CMS(Concrete5),我已经开启了“不错的网址”......
例如,dir /var/www/user1/www.mydomain.at /
中的http:/ /www.mydomain.at/test/
为http:/ /www.mydomain.at/index.php?cid=1
现在我想使用移动模板
http:/ /mobile.mydomain.at/test/mobile-version/ in dir /var/www/user1/mobile.mydomain.at/
应该是http:/ /www.mydomain.at/test/mobile-version/
我不想要重定向,它应该是别名......
请帮助 - 很多
答案 0 :(得分:0)
启用Mod_Proxy
,然后将这些行添加到移动版文件夹中的.htaccess
:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mobile\.mydomain\.at$ [NC]
RewriteRule (.+)$ http://www.mydomain.at/$1 [L,P]