NC,OR in htaccess - Apache Views : 819
Tagged in : Apache
0 0
Send mail
The [NC] code means "No Case", meaning match the url regardless of being in upper or lower case letters.

OR means "Or Next", as in, match this domain or the next line that follows.

Example:
RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://(.+\.)?xxx\.com/ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://(.+\.)?yyy\.com/ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://(.+\.)?aaa\.com/ [NC]
By Rekha, On - 2010-02-17



    Login to add Comments .