PHP: How to enable rewrite_mod in WAMP
Have a look on below Image and follow the steps to make “rewrite_mod” on WAMP server.     You all know WAMP stands for (Windows, Apache, MySQL, PHP), It is package provide you an environment to execute your PHP application.   But the general issue you have faced with WAMP is, your rewrite rules usually…

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)

How to install ioncube loader in xampp
1. Find your PHP version using phpinfo() function. You should need to know the version when you download the ionCube loaders.   x86/ppc/sparc packages are for 32 bit systems; x86-64/ppc64 packages are for 64 bit systems.   The Windows non-TS Loaders are for use on a Windows system where a phpinfo() page shows that PHP… (1 comment)

Set up multiple virtual hosts on XAMPP for windows
You just have to update the following files: X:\xampp\apache\conf\extra\httpd-vhosts.conf   First of all,  uncomment the following line to enable name based virtual host on your server’s port 80: NameVirtualHost *:80   Then you can start adding your virtual hosts. The following listing is just a sample, I usually do.I am assuming ,we create a project…