0

我有一个 CMS(Concrete5)并且我已经打开了“漂亮的 url”......

例如, http:/ /www.mydomain.at/test/http:/ /www.mydomain.at/index.php?cid=1目录 /var/www/user1/www.mydomain.at/

现在我想使用移动模板

http:/ /mobile.mydomain.at/test/mobile-version/ in dir /var/www/user1/mobile.mydomain.at/

那应该是http:/ /www.mydomain.at/test/mobile-version/

我不想要重定向,它应该是一个别名......

请帮忙 - 非常感谢

4

1 回答 1

0

启用Mod_Proxy而不是将这些行添加到.htaccessMobile-version 文件夹中:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^mobile\.mydomain\.at$ [NC]
RewriteRule (.+)$ http://www.mydomain.at/$1 [L,P]
于 2013-07-10T09:50:03.923 回答