Last active
July 16, 2019 02:07
-
-
Save priatmoko/f6fd3edbb781609a85aaf7437a1cb04e to your computer and use it in GitHub Desktop.
Laravel Xampp Apache Sub-directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#the configuration on apache configuration | |
#you can find the configuration on | |
#C:\xampp\apache\conf\httpd.conf | |
<Directory "C:/xampp/htdocs/apps/public"> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
Require all granted | |
</Directory> | |
Alias "/apps" "C:/xampp/htdocs/apps/public" | |
#Using that configuration you can access laravel http://localhost/apps |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment