在.htaccess文件中重写子域的规则

时间:2014-08-22 18:59:58

标签: apache .htaccess mod-rewrite

我有一个名为

的子域名
http://career.example.com

我的网址看起来像

http://career.example.com/details.php?jid=17

现在我要显示我的网址看起来像

http://career.example.com/details

我在.htaccess中使用此代码但无法正常工作

RewriteEngine on

RewriteCond %{HTTP_HOST} ^career\.example\.com  [NC]
RewriteRule ^(.*) http://example.com/$1 [L,R=301]
RewriteRule    ^details/([0-9]+)/?$    details.php?jid=$1    [NC,L]

0 个答案:

没有答案