• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

laravel如何设置nginx伪静态?

php 搞代码 4年前 (2022-01-25) 15次浏览 已收录 0个评论
文章目录[隐藏]

按照官网设置的直接不解析网页变成下载了,试了网上的很多版本也没用。
用的是LNMP一键安装环境。

我的vhost配置信息:

<code>server    {        listen 80;        #listen [::]:80;        server_name domain.com;        index index.html index.htm index.php default.html default.htm default.php server.php;        root  /home/wwwroot/domain.com/public;        #error_page   404   /404.html;        location / {            try_files $uri $uri/ /index.php?$query_string;        }        location ~ [^/]\.php(/|$)            {                # comment try_files $uri =404; to enable pathinfo                try_files $uri =404;                fastcgi_pass  unix:/tmp/php-cgi.sock;                fastcgi_index index.php;                include fastcgi.conf;                #include pathinfo.conf;            }        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$            {                expires      30d;            }        location ~ .*\.(js|css)?$            {                expires      12h;            }        access_log  /home/wwwlogs/domain.log  access;    }</code>

回复内容:

按照官网设置的直接不解析网页变成下载了,试了网上的很多版本也没用。
用的是LNMP一键安装环境。

我的vhost配置信息:

<code>server    {        listen 80;        #listen [::]:80;        server_name domain.com;        index index.html index.htm index.php default.html default.htm default.php server.php;        root  /home/wwwroot/domain.com/public;        #error_page   4<span style="color:transparent">/本文来源gaodai#ma#com搞*!代#%^码网%</span><sub>搞代gaodaima码</sub>04   /404.html;        location / {            try_files $uri $uri/ /index.php?$query_string;        }        location ~ [^/]\.php(/|$)            {                # comment try_files $uri =404; to enable pathinfo                try_files $uri =404;                fastcgi_pass  unix:/tmp/php-cgi.sock;                fastcgi_index index.php;                include fastcgi.conf;                #include pathinfo.conf;            }        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$            {                expires      30d;            }        location ~ .*\.(js|css)?$            {                expires      12h;            }        access_log  /home/wwwlogs/domain.log  access;    }</code>

我的配置是这样的:

<code>server{    listen       80;    server_name b.phodal.com;    index index.html index.htm index.php default.html default.htm default.php;    root  /home/www/MK_iot/public;    include other.conf;    location ~ .*\.(php|php5)?$        {            try_files $uri =404;            fastcgi_pass  unix:/tmp/php-cgi.sock;            fastcgi_index index.php;            include fcgi.conf;        }    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$        {            expires      30d;        }    location ~ .*\.(js|css)?$        {            expires      12h;        }     if (!-d $request_filename)            {                rewrite ^/(.+)/$ /$1 permanent;            }            # removes trailing "index" from all controllers            if ($request_uri ~* index/?$)            {                rewrite ^/(.*)/index/?$ /$1 permanent;            }            # unless the request is for a valid file (image, js, css, etc.), send to bootstrap            if (!-e $request_filename)            {                rewrite ^/(.*)$ /index.php?/$1 last;                break;            }    access_log  /home/wwwlogs/b.phodal.com.log  b.phodal.com;}</code>

搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:laravel如何设置nginx伪静态?
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址