我有自定义分类法http://thedripple.com/country/india并且我想在有人打开http://in.thedripple.com时显示此类别。我想这可以使用 htaccess 来完成,我尝试了以下代码,但没有成功。还有其他选择吗?我想将子域保留在地址栏中。
RewriteEngine on
RewriteCond %{HTTP_HOST} ^in.thedripple.com [NC]
RewriteRule ^/(.*)$ /country/india/$1 [L]
我有自定义分类法http://thedripple.com/country/india并且我想在有人打开http://in.thedripple.com时显示此类别。我想这可以使用 htaccess 来完成,我尝试了以下代码,但没有成功。还有其他选择吗?我想将子域保留在地址栏中。
RewriteEngine on
RewriteCond %{HTTP_HOST} ^in.thedripple.com [NC]
RewriteRule ^/(.*)$ /country/india/$1 [L]