Under normal circumstances, there is a PHP project other people, and then put it in the Htdocs directory, and then opened the service, in the browser entered the local address, but the situation, so how to open the PHP project in the XAMPP environment?
Reply to discussion (solution)
You need to configure multiple domain names to be directly accessible.
Is the xampp word I use also configured according to the Apache configuration method?
In the httpd.conf find directory that section settings, change to the following try. (Remember to restart Apache after you change)
#Options FollowSymLinks
Options Indexes FollowSymLinks includes execcgi
AllowOverride All
Order Deny,allow
Allow from all
In the httpd.conf find directory that section settings, change to the following try. (Remember to restart Apache after you change)
#Options FollowSymLinks
Options Indexes FollowSymLinks includes execcgi
AllowOverride All
Order Deny,allow
Allow from all
Good
Big God, can you tell me why this is?