NGINX 中 .htaccess 的等效项

NGINX 中 .htaccess 的等效项

我有以下.htaccess文件。我尝试配置它,NGINX但没有成功。

.htaccess

RewriteEngine On
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]

我当前的NGINX配置在ajenti托管面板上。

在此处输入图片描述

答案1

我突然想到,

try_files $uri $uri/ /index.php/$uri;

应该可以解决问题。

相关内容