質問

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

役に立ちましたか?

解決

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]
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top