.htaccess重写将root子目录重定向到另一个子目录

时间:2012-04-24 03:17:46

标签: .htaccess mod-rewrite

试图获得

www.example.com/alpha

www.example.com/beta

我正在尝试这个,但它不起作用

RewriteEngine on
rewritecond %{http_host} example.com/alpha [nc]
rewriterule ^(/)?$ beta [L]

1 个答案:

答案 0 :(得分:0)

试试这个:

RewriteEngine on
RewriteCond %{http_host} example.com\alpha$
RewriteRule \beta$ - [L]

<小时/>

更多信息:Click Here

  

http://wiki.apache.org/httpd/RewriteCond