在apache
中,我有一个.htaccess
,如果找不到文件或文件夹,它将从http://server/api/any/path/i/want
重写为http://server/api/index.php
。
Options -MultiViews
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $0#%{REQUEST_URI} ([^#]*)#(.*)\1$
RewriteRule ^.*$ %2index.php [L,NC,QSA]
</IfModule>
我要移至docker
,将改用nginx
,我想重写rewrite
。
要注意的是,使用apache
和.htaccess
$_SERVER['REQUEST_URI']
是/api/any/path/i/want
,而不是重写的URL(index.php....
)。
我对nginx
不太了解,但是从SO的帖子中我发现了一些问题。
site.conf
的相关部分
location / {
root /app/html;
try_files $uri $uri/ index.html /index.php?$args;
}
location ~ \.php$ {
try_files $uri @missing;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass php:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
location @missing {
rewrite ^ $scheme://$host/api/index.php permanent;
}
不幸的是,上述配置只会重定向到index.php
,据我所知。
我如何在nginx
中做同样的事情?
答案 0 :(得分:3)
这是用于PHP-FPM的典型nginx配置。
server {
root /app/html;
location / {
try_files $uri $uri/ /api/index.php$is_args$args;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass php:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
}
请注意与您的示例的区别:
@missing
定位块。try_files
位置栏中删除了.php
语句。root
声明移至服务器块。如果您需要使用不同的词根,请在您的问题中指定该词根。try_files
语句包含您的api/index.php
的完整路径。如果请求的路径不存在,它将由您的/app/html/api/index.php
脚本作为全局入口点来处理。