Wamp.NET Local Development Environment Guide
Wamp.NET is a WAMP distribution for Windows that integrates Apache, MySQL, PHP, and phpMyAdmin, allowing access to local sites via localhost.
Wamp.NET is a WAMP integrated environment on the Windows platform (similar to WampServer), packaging Apache, MySQL/MariaDB, PHP, and common tools for easy development of ASP/PHP sites on localhost.
Default localhost Access
| Purpose | Address |
|---|---|
| Site Root | http://localhost |
| Alternative Port | http://localhost:8080 |
| phpMyAdmin | http://localhost/phpmyadmin |
Installation and Startup
- Download the installation package from the official Wamp.NET site or a trusted source.
- After installation, start Wamp.NET from the system tray or start menu.
- A green service icon indicates that Apache and MySQL are running.
- Access http://localhost in your browser.
Website Root Directory
Typically located in the installation directory under www or wwwroot, for example:
C:\wamp.net\www\Place your PHP projects in a subfolder to access them via http://localhost/project_name/.
Differences from WampServer
Both are Windows WAMP solutions; the interface and paths may differ, but the core usage is the same: start services → place files in www → access via localhost.
Common Issues
Port 80 is Occupied
Modify the Apache listening port in the configuration, or use http://localhost:8080.
Switching PHP Versions
Select different PHP versions through the tray menu (if multiple versions are installed).
Installing Alongside XAMPP
Avoid starting two sets of Apache/MySQL simultaneously to prevent port conflicts.
Summary
Wamp.NET is suitable for Windows users to quickly set up a PHP environment, with the local entry point at http://localhost, and website files placed in the www directory.