How to Solve Overwrite index.php in Windows Wampserver?

By Hardik Savani November 5, 2023 Category : PHP Wampserver Installation

Many time you have face a problem in windows wampserver or virtualhost of index.php file overwrite. i also fetch that problem like:

http://localhost/test/index.php/admin

In this url you can see index.php wtite in url, but URL must be without index.php. so if you are using windows wampserver then you can easily solve out this problem by folowing step:

1. Open File : C:\wamp\bin\apache\Apache2.4.4\conf\httpd.conf

2. Find : #LoadModule rewrite_module modules/mod_rewrite.so and

Then, Just Change, Only remove ‘#’ sign.

#LoadModule rewrite_module modules/mod_rewrite.so

INTO

LoadModule rewrite_module modules/mod_rewrite.so

3.Restart: restart your wampserver.

At last you can open without index.php file like:

http://localhost/test/admin

Try this.........

Tags :
Shares