首先,我试图搜索类似的问题,但这些问题的解决方案是特定的代码行,我无法根据自己的需要进行定制。
我有一个 Codeigniter 安装,我正在尝试从 Apache 迁移到 nginx。然而,在 Apache 中 .htaccess 非常简单:它需要一个白名单,并将其他所有内容重写为index.php
.
RewriteEngine on
RewriteCond $1 !^(index\.php|css|images|core|uploads|js|robots\.txt|favicon\.ico)
RewriteRule ^(.*)$ /index.php/$1 [L]
但是在 nginx 中,我尝试了 if 和 try_files 指令,以及弄乱位置,但无济于事。我对 nginx 如何读取服务器配置仍然很陌生,并且在线教程有些令人困惑。
此外,index.php 将不在 Web 根目录中,而是在子目录server
中。
因此,我还需要确保即使以 /server 开头的 URI 请求也不会转到目录,而是index.php
到目前为止,这是我的 nginx 虚拟主机配置:
server {
listen 80;
server_name example.com;
root /home/example/public_html;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
location / {
index index.htm index.html index.php;
}
location ~ \.php$ {
fastcgi_pass unix:/var/run/php-fpm/example.sock;
include fastcgi_params;
fastcgi_param PATH_INFO $fastcgi_script_name;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
location ~* ^.*(/|\..*) {
try_files $uri $uri/ /server/index.php;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
这有助于将请求重定向到index.php
,但没有白名单。如果有人能生成一个工作示例并简要说明每个部分的作用,我将不胜感激。