我正在研究如何根据以下要求创建规则:
目前,我已将htaccess设置为此:
RewriteEngine on
RewriteCond %{REQUEST_URI} /student$ [NC]
RewriteRule .* https://www.membership.com/ [R=301,L]
RewriteCond %{REQUEST_URI} ^/[a-z](.*)$
RewriteRule .* http://www.membership.com/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^www\.oldsite\.com$ [NC]
RewriteRule . http://www.oldsite.com [L]
它正确处理了/ student和/ anypath,但没有处理第三项要求。
有什么建议吗?
谢谢!