Howto block a visitor of your website using .htaccess. First of all you will need to know the IP of the visitor you are going to block. Once you have the IP you can create the following .htaccess file: order allow,deny deny from XXX.XXX.XXX.XXX deny from XXX.XXX.XXX.XXX allow from all XXX.XXX.XXX.XXX: IP of a visitor […]
Tag: htaccess
How to redirect your web pages
This will show you how to redirect your web pages. 301 Redirect 301 redirect is the most efficient and Search Engine Friendly method for webpage redirection. It’s not that hard to implement and it should preserve your search engine rankings for that particular page. If you have to change file names or move pages around, […]