appacheでhttps://github.com/lencioni/SLIRをセットアップしました。htaccessファイルがあり、非常にうまく機能します。今、私はNginxに移動し、SLIRを同じように機能させたいと思っています。以下は私が変換する必要があったものです。
# Prevent other scripts from interfering with SLIR
php_value auto_prepend_file none
php_value auto_append_file none
# Pretty URLs
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [S=40]
RewriteRule . index.php [L]
</IfModule>
# Prevent viewing of the error log file in its default location
<Files slir-error-log>
Order Deny,Allow
Deny from All
</Files>
下の行以外はすべて変換できました
RewriteRule ^.*$ - [S=40]
何か案は?ありがとう