LNMP 1.x版本 pathinfo设置

前端之家收集整理的这篇文章主要介绍了LNMP 1.x版本 pathinfo设置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

更新测试时间2016.03.08,lnmp1.3-beta最新版+typecho开发最新版。 只要修改vhost下面的配置文件 enable-PHP.conf 为 enable-PHP-pathinfo.conf 再引用 typecho.conf 伪静态文件,完美解决。 不用下面的废劲方法了。

===========分隔线============

现在使用lnmp1.x版本,搭配typecho登陆后台,会出现404错误。小夜就不深究原因了,这里只说解决办法。

1.enable-PHP.conf 文件添加pathinfo2.conf引入

        location ~ [^/]\.PHP(/|$)
        {
            try_files $uri =404;
            fastcgi_pass  unix:/tmp/php-cgi.sock;
            fastcgi_index index.PHP;
            include fastcgi.conf;
            include pathinfo2.conf;
        }

2.上传pathinfo2.conf文件(和原来默认版本不一样)

set $real_script_name $fastcgi_script_name;
if ($fastcgi_script_name ~ "(.+?\.PHP)(/.*)") {
set $real_script_name $1;
set $path_info $2;
}
fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
fastcgi_param SCRIPT_NAME $real_script_name;
fastcgi_param PATH_INFO $path_info;

3.如果除首页外全部404,则为伪静态规则问题,请使用以下伪静态规则:

location /
{
index index.html index.PHP;
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.PHP){
rewrite (.*) $1/index.PHP;
}
if (!-f $request_filename){
rewrite (.*) /index.PHP;
}
}

以上问题,主要常见于lnmp1.3-beta版本,主要为typecho遇到。

原文链接:https://www.f2er.com/lnmp/72556.html

猜你在找的LNMP相关文章