TP5部署服务器只能打开首页其他页面全是404
燕浮生若梦
燕浮生若梦 2019-09-18 14:16:06
[PHP讨论组]

nginx.conf

server
  {
   listen        80;
   server_name cy.280878.com;
   root        /home/www/cy.280878.com;
   index        index.php index1.php index.htm index.html;



   #location / {
   #        if ( -f $request_filename) {
   #            break;
   #        }
   #       if ( !-e $request_filename) {
   #            rewrite ^(.*)$ /index.php/$1 last;
   #            break;
   #       }
   #    }


       location ~ .+\.php($|/) {
           #fastcgi_pass unix:/dev/shm/php-cgi.sock;
           fastcgi_pass     127.0.0.1:9000;
           fastcgi_split_path_info ^((?U).+.php)(/?.+)$;
           fastcgi_param PATH_INFO $fastcgi_path_info;
           fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
           fastcgi_param    SCRIPT_FILENAME    $document_root$fastcgi_script_name;
           include        /etc/nginx/fastcgi_params;

       }

  }

.htaccess


Options +FollowSymlinks -Multiviews
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]


首页:http://cy.280878.com/newswork/

404页面:http://cy.280878.com/newswork/details/index.html?id=4

燕浮生若梦
燕浮生若梦

全部回复(1)
(O_O)

是不是图片路径传的不对

  • 回复 已解决,重定向位置路径的问题..还有index.php做了目录限制...
    燕浮生若梦 作者 2019-09-20 15:55:01
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号