跨域htaccess配置

时间:2011-10-24 08:52:53

标签: apache .htaccess

我需要路由

http://domain.fr/subpage

http://domain.com/fr/subpage

使用htaccess。 有什么想法吗?

星期一早上,.htaceess的所有小配置元素都让我感到沮丧。

1 个答案:

答案 0 :(得分:0)

试试这个:

RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^(www\.)?domain\.fr$ [NC]
RewriteCond %{REQUEST_URI} ^/subpage[/]?$
RewriteRule (.*) http://domain.com/fr/subpage [R=301,L]

如果URI为domain.fr/subpage,这些规则将检查域是/subpage/ ,然后将使用状态码301(永久移动)重定向到你想要的实际地址。