0
我在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]
任何想法行了? 感謝
這是更好地問上superuser.com這個問題 – 2013-03-27 10:42:04