试图获得
www.example.com/alpha
到
www.example.com/beta
我正在尝试这个,但它不起作用
RewriteEngine on
rewritecond %{http_host} example.com/alpha [nc]
rewriterule ^(/)?$ beta [L]
答案 0 :(得分:0)
试试这个:
RewriteEngine on
RewriteCond %{http_host} example.com\alpha$
RewriteRule \beta$ - [L]
<小时/>