好不容易安装到了这一步,首页域名、后台域名均出现“页面找不到了,什么情况“,这该怎么办啊?
有关的设置如下:
******************************************************************* # 设置Nginx伪静态 57 location / { 58 if (!-e $request_filename){ 59 rewrite ^(.*)$ /index.php?s=$1 last; break; 60 }
******************************************************************* # pass PHP scripts to FastCGI server 64 location ~ .php$ { 65 include snippets/fastcgi-php.conf; 66 fastcgi_pass unix:/run/php/php7.4-fpm.sock; 67 }
****************************************************************** public目录下.htaccess: <IfModule mod_rewrite.c> 2 RewriteEngine on 3 RewriteCond %{REQUEST_URI} !^/public/ 4 RewriteRule ^(.*)$ /public/$1 [L] 5 </IfModule> |