将基于apache的重写规则转换为nginx

时间:2016-09-23 17:32:09

标签: apache .htaccess nginx

IndexIgnore *
Options -Indexes 
Options +FollowSymLinks

RewriteEngine On
RewriteBase /
RewriteRule . index.php [QSA,L]

我使用过自动转换网站,但由于某些原因,它无效。

1 个答案:

答案 0 :(得分:0)

你可以在root位置重写这个:

location / {
  rewrite ^/(.*)$ /index.php?$1 break;
  ...
}
相关问题