Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对此使用了重写规则:
RewriteRule ^([a-zA-Z0-9_-]+)/?$ index.php?abrir=$1
仅当我的域为 WWW 或为空时,我如何才能进行此重写工作?因为我有其他不使用此规则的子域。
谢谢!
添加
RewriteCond %{HTTP_HOST} ^www.example.com$ [NC] RewriteCond %{HTTP_HOST} ^example.com$ [NC]
在你之前RewriteRule
RewriteRule