Most useful 5 htaccess tricks every webmaster should know
Most useful 5 htaccess tricks every webmaster should know 1) Redirect your website visitors while you update or test your website order deny,allow deny from all allow from 117.117.117.117 ErrorDocument 403 /showpage.html <Files showpage.html> allow from all </Files> Replace 117.117.117.117 with your IP address. Also replace showpage.html with the name of the page you want… (4 comments)

Remove index.php from CodeIgniter URL Path using .htaccess
If you are using Codeigniter (PHP Framework) you are noticed that by default index.php will be included with your URL.   But you can easily remove index.php from your URL so that your URL should be like : http://yourdomainname.com/controller/action/var1/var2   To do this just follows the following steps:   1. Open config.php from system/application/config directory… (2 comments)