Pergunta

Is there any solution to restrict aite access from its ip address like my website ip address is 22.22.22.22. It should open when user access by domain name only www.mydomain.com

Thanks in advance

Foi útil?

Solução

put this code in your DOCUMENT_ROOT/.htaccess file:

RewriteEngine On

RewriteCond %{HTTP_HOST} ^(4yourprice\.com|[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)$ [NC]
RewriteRule ^ http://www.4yourprice.com%{REQUEST_URI} [L,NE,R=301]
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top