1Panel/cmd/server/nginx_conf/rewrite/shopwind.conf

14 lines
402 B
Plaintext
Raw Normal View History

2023-04-14 16:01:06 +08:00
location / {
#Redirect everything that isn't a real file to index.php
try_files $uri $uri/ /index.php$is_args$args;
}
#If you want a single domain name at the front and back ends
location /admin {
try_files $uri $uri/ /admin/index.php$is_args$args;
}
location /mobile {
try_files $uri $uri/ /mobile/index.php$is_args$args;
}
location /api {
try_files $uri $uri/ /api/index.php$is_args$args;
}