0

我有自定义分类法http://thedripple.com/country/india并且我想在有人打开http://in.thedripple.com时显示此类别。我想这可以使用 htaccess 来完成,我尝试了以下代码,但没有成功。还有其他选择吗?我想将子域保留在地址栏中。

RewriteEngine on
RewriteCond %{HTTP_HOST} ^in.thedripple.com [NC]
RewriteRule ^/(.*)$ /country/india/$1 [L]
4

1 回答 1

0

以下应该做魔术:

RewriteEngine On
RewriteRule ^country/india(.*)$ http://in.thedripple.com [R=301,L] 
RewriteRule ^country/india/(.*)$ http://in.thedripple.com/$1 [R=301,L]
于 2012-11-12T10:19:13.980 回答