htaccess filename.php?name = category to subdomain category.domain.com

时间:2015-03-16 08:21:53

标签: php .htaccess

请帮帮我:

什么是htaccess代码

filename.php?name=category to subdomain category.domain.com

感谢。 对不起我的英语不好

2 个答案:

答案 0 :(得分:0)

以下htaccess应该完成这项工作:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www\.)?domain.com$ [NC]
RewriteCond %{QUERY_STRING} ^name=(.*)$
RewriteRule filename.php http://%1.domain.com [R=301,L]

答案 1 :(得分:0)

感谢Ali Arshad,

与之合作:

RewriteCond %{HTTP_HOST} ^[^\.w{3}]+\.domain.com$
RewriteRule ^$ %{HTTP_HOST} [C]
RewriteRule ^([^\.w{3}]+)\.domain\.com$ filename.php?name=$1

我非常感激,因为它帮助我找到了解决方案。