这是英语的规则:
除 index.php、assets 文件夹、文件夹和 robots.txt 之外的任何 HTTP 请求都被视为对 index.php 文件的请求。
我有一个.htaccess
在 Apache 服务器上正常工作的文件:
RewriteCond $1 !^(index\.php|assets|files|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
此规则的一些正确结果:
example.com
=example.com/index.php
example.com/index.php/welcome
=example.com/welcome
example.com/assets/css/main.css
!= example.com/index.php/assets/css/main.css
我尝试了一些工具将 htaccess 规则转换为 nginx 规则,但都不正确。
通过http://winginx.com/htaccess(缺少资产文件夹的例外规则...):
location / { rewrite ^(.*)$ /index.php/$1 break; }
通过http://www.anilcetin.com/convert-apache-htaccess-to-nginx/($1 值错误):
if ($1 !~ "^(index.php|assets|files|robots.txt)"){
set $rule_0 1$rule_0;
}
if ($rule_0 = "1"){
rewrite ^/(.*)$ /index.php/$1 last;
}
我怎样才能解决这个问题?调试规则真的很难。
到目前为止,这是我的 nginx 配置:
server {
listen 80;
server_name www.example.com example.com;
location / {
try_files $uri $uri/ /index.php?/$request_uri;
}
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/html$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}