ThinkPHP V5.1.18 部署到服务器上如何去掉public/index.php也能访问

ThinkPHP V5.1.18 部署到服务器上如何去掉public/index.php也能访问

http://abc.com/public/index.p...

现在需要按如上链接链接规则才能访问,我想要去掉/public/index.php像如下链接一样能访问

http://abc.com/index/index/index

下面是我的Nginx配置文件,如果我把配置文件里root这一项改成/var/wwwroot/abc/public时,访问http://abc.com/index.php就报5...,可我已经把thinkphp的debug设为true了,也没有报详细错误。

server
    {
        listen 80;
        server_name abc.com ;
        index index.html index.htm index.php default.html default.htm default.php;
        root  /var/wwwroot/abc;

        location / {
            if (!-e $request_filename) {
                rewrite ^(.*)$ /index.php?s=/$1 last;
                break;
            }
        }
        
        location ~ [^/]\.php(/|$)
        {
            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;
        }

        location ~ /.well-known {
            allow all;
        }

        location ~ /\.
        {
            deny all;
        }

        access_log  /var/wwwlogs/abc.com.log;
    }
阅读 5k
1 个回答

1.虚拟域名指向/var/wwwroot/abc/public
2.Nginx.conf 配置忽略index:

if (!-e $request_filename){
        rewrite  ^(.*)$  /index.php?s=$1  last;
        break;
     }

3..htaccess如果启用了,可以试试这个配置

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfModule>

4.runtime是否有足够权限

如果还不行,可以看看nginx的日志,或者php-fpm日志(打开 php.ini 搜索 display_errors,把 Off 修改为 On就开启了 php 错误提示)

图示是我的配置图,可供参考:

clipboard.png

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进