.htaccess别名,但不重定向

时间:2013-07-10 08:06:30

标签: .htaccess alias concrete5

我有一个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/

的别名

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

请帮助 - 很多

1 个答案:

答案 0 :(得分:0)

启用Mod_Proxy,然后将这些行添加到移动版文件夹中的.htaccess

RewriteEngine On
RewriteCond %{HTTP_HOST} ^mobile\.mydomain\.at$ [NC]
RewriteRule (.+)$ http://www.mydomain.at/$1 [L,P]