The Requested URL /phpmyadmin/ was not Found on this Server Windows Xampp

In xampp windows, The error the requested URL /phpmyadmin was not found on this server occurs when mod_rewrite is not activated in xampp server on windows, To fix this error, you have to open the httpd.conf, and remove the # at the beginning of this line LoadModule rewrite_module modules/mod_rewrite.so.

If you use Apache and MySQL using xampp Server on Windows machine, then sometimes this error is common. To fix this error, you just have to open the Apache httpd.conf file of xampp Server and activate mod_rewrite, this error will be fixed.

How to Fix The Requested URL phpmyadmin was not Found on this Server Windows Xampp

Here are some steps to fix the requested url /phpmyadmin was not found on this server xampp windows:

Step 1: Edit httpd.conf

Open the httpd.conf file in the Apache configuration on any text editor, which is located C:\xampp\apache\conf\httpd.conf.

Step 2: Enable mod_rewrite

Now in httpd.conf file to search LoadModule rewrite_module modules/mod_rewrite.so, Look for the following line and remove the # at the beginning if it’s commented:

LoadModule rewrite_module modules/mod_rewrite.so

Save and close this file to apply the changes.

Step 3: Restart Xampp Services

Now it’s time to restart apache and mysql in xampp server, so go to XAMPP control panel, then restart them again.

Step 4: Test PHPMyadmin

Now open your browser and type the below url with your server ip address or localhost to verify:

http://[SERVER_PUBLIC_IP]/phpmyadmin

Make sure you are using the correct URL, it has been fixed and You can access your phpmyadmin on localhost windows:

Conclusion

That’s it, you should be able to resolve the “The requested URL phpMyAdmin was not found on this server” error in xampp server on your Windows machine.

Recommended Tutorials

AuthorAdmin

Greetings, I'm Devendra Dode, a full-stack developer, entrepreneur, and the proud owner of Tutsmake.com. My passion lies in crafting informative tutorials and offering valuable tips to assist fellow developers on their coding journey. Within my content, I cover a spectrum of technologies, including PHP, Python, JavaScript, jQuery, Laravel, Livewire, CodeIgniter, Node.js, Express.js, Vue.js, Angular.js, React.js, MySQL, MongoDB, REST APIs, Windows, XAMPP, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL, and Bootstrap. Whether you're starting out or looking for advanced examples, I provide step-by-step guides and practical demonstrations to make your learning experience seamless. Let's explore the diverse realms of coding together.

Leave a Reply

Your email address will not be published. Required fields are marked *