如果url包含以下任何字符串,请阻止:
RewriteEngine On
RewriteCond %{REQUEST_URI} password-reset|register.html|plus.google.com
RewriteRule ^ - [R=410]
如果url包含
facebook.com and (plus.google.com or password-reset.hmlt)
RewriteEngine On
RewriteCond %{REQUEST_URI} facebook.com
RewriteCond %{REQUEST_URI} plus.google.com [OR]
RewriteCond %{REQUEST_URI} password-reset.html
RewriteRule ^ - [R=410]
(
[OR]
优先级高于(隐式)
[AND]
)