Sample htaccess file
<Limit GET POST>
order allow,deny
SetEnvIf Remote_Addr ^10\.87\. ban
#allow from 10.87.63.0/8
allow from env=allow
deny from env=ban
</Limit>
#https://www.countryipblocks.net/block-specific-ips-from-your-allow-list-using-setenvif
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^test$ https://google.co.in
#RewriteRule .* https://google.co.in
#RewriteRule ^abc/([a-z]*)/([0-9]*)$ xyz.php?name=$1&id=$2 [NC,L,QSA]
#RewriteCond %{HTTP_HOST} ^reporting.soc.saint-gobain.net [NC]
#RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://domain.com/$1 [R,L]
</IfModule>