Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have created some sites with Laravel and I would like to upload them to a single domain (without subdomain, but in subdirectory).

Deploying the first site on example.com works.

The second exmple.com/test to create a subdirectory in example.com.

I can't set up the nginx to redirect visits to example.com/test

I tried with:

location /test/ {
    alias  /home/forge/example.com/test/public;
    try_files $uri $uri/ /test/index.php?$query_string;
}

But, I always get error 403.

Can you give me some indication on how to proceed?

I use Laravel Forge and DigitalOcean.

Thanks,

Andrea


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...