重定向子域到主域

时间:2019-09-18 18:54:09

标签: apache .htaccess redirect subdomain

我正在尝试对我的网站进行重定向,这样,如果有人输入fr.example.com/blabla,它将把他们重定向到example.com/fr/blabla

在网上搜索后,我发现可以将以下内容放入我的.htaccess文件中:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^fr\.example\.com$
RewriteRule ^(.*)$ http://example.com/fr/$1 [R=301,L]

现在此重定向有效,但是,它似乎忽略了URL末尾的路径,而是将其重定向到example.com/fr/index.php。

我在做什么错了?

0 个答案:

没有答案