Files
shop-platform/src/nginx.htaccess

8 lines
192 B
Plaintext

# Nginx 配置片段
location / {
# 如果文件不存在,则重写到 index.php 文件
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php/$1 last;
break;
}
}