I installed Xampp on mac and I'm going to run my web application on local, which located on "/Data/MyApp/App"
.
I know I should put source codes inside htdocs
.
So I created an alias of "App"
by right click -> Make Alias
and put it to "Applications/Xampp/htdocs/"
. I changed alias name test
.
When I run localhost/test
on chrome browser, I see empty screen but downloads unknown file test
.
Instead, I paste whole sources(App
) to htdocs
with name test2
and localhost/test2
shows me correct screen according to the index.php
inside of test2
. Just note that file structures of test
and test2
are exactly same.
Applications/Xampp/htdocs/test(alias)/index.php // not working
Applications/Xampp/htdocs/test2(real folder)/index.php // work well
What's wrong with this?
Should I set something for making alias folder work inside htdocs
?