Skip to content

Instantly share code, notes, and snippets.

@priatmoko
Last active July 16, 2019 02:07
Show Gist options
  • Save priatmoko/f6fd3edbb781609a85aaf7437a1cb04e to your computer and use it in GitHub Desktop.
Save priatmoko/f6fd3edbb781609a85aaf7437a1cb04e to your computer and use it in GitHub Desktop.
Laravel Xampp Apache Sub-directory
#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