htaccess重命名url:子域名指向其中的php文件

时间:2014-07-29 08:07:32

标签: .htaccess url directory rewrite subdomain

我想重写一个url,它位于我的新项目的子域目录中。我想要

  

http://sub.domain.com/download.php?id=56&name=Mango

     

看起来像>>

     

http://sub.domain.com/game/56/Mango

是否可以使用.htaccess?

1 个答案:

答案 0 :(得分:0)

将此代码放入DOCUMENT_ROOT/.htaccess中的sub.domain.com文件中:

RewriteEngine On
RewriteBase /

RewriteCond %{HTTP_HOST} ^sub\.domain\.com$ [NC]
RewriteRule ^game/(\d+)/([^/]+)/?$ download.php?id=$1&name=$2 [L,QSA,NC]