luocifu08 发表于 2017-6-16 14:49:26

伪静态求助

nginx.conf   配置:listen 80;server_name localhost;其他不变vhost.conf配置:   listen 80;server_name 域名;   include wordpress.conf;   
location ~ \.php {
fastcgi_passunix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fastcgi.conf;}
访问域名/test.html是正常的访问ip/   也是可以进入恭喜您,LNMP一键安装包安装成功!这个页面,其他的也都是正常的访问域名就是500错误访问域名/test也都是500错误   是重写规则出错了吧?如何解决?

[ 本帖最后由 luocifu08 于 2017-6-16 14:51 编辑 ]

luocifu08 发表于 2017-6-16 14:54:07

回复 1# 的帖子

补充一下,我是用laravel写的

孽爱 发表于 2017-6-16 15:13:40

这个,可以顶一下下!

luocifu08 发表于 2017-6-16 17:08:55

回复 1# 的帖子

centOS系统阿里云的个人1G内存,php5.6.30,用lnmp1.4版本一键安装

licess 发表于 2017-6-16 18:15:52

https://laravel.com/docs/5.4#web-server-configuration 官网上已经明确给出了伪静态

在 /usr/local/nginx/conf/ 下面创建 laravel.conf
内容
location / {
    try_files $uri $uri/ /index.php?$query_string;
}
保存
lnmp vhost add 按 https://lnmp.org/faq/lnmp-vhost-add-howto.html 进行添加,选伪静态那一步输入 laravel 其他选项按自己需求选择

500报错,按常见问题方法开启php错误日志,里面会有具体错误信息,按错误信息进行排错

luocifu08 发表于 2017-6-18 12:42:19

回复 5# 的帖子

还是不行,已经按照你的方法试了,而且之前,我也是有放这个rewrite的,需要环境,我可以私信给你

luocifu08 发表于 2017-6-20 09:54:18

啊啊啊

啊啊啊啊啊啊

[ 本帖最后由 luocifu08 于 2017-6-20 10:27 编辑 ]
页: [1]
查看完整版本: 伪静态求助