部署到服务器,模块index不存在
来源:15-2 另一种思路处理库存量的问题
慕粉1311528564
2017-06-27
服务器是Nginx,上传代码后如图
后面修改配置
提示
写回答
2回答
-
用这个:
location / {
index index.html index.htm index.php l.php;
try_files $uri $uri/ /index.php$uri$is_args$args;
}
location ~ \.php(.*)$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
include fastcgi_params;
}
122017-06-29 -
7七月
2017-06-27
Nginx的隐藏index.php和Apache的不一样,这个查一下如何在nginx下做url重写
00
相似问题