0
我想要將幾個.htaccess
規則轉換爲NGINX,但是它不會很好。我必須在這裏爬行,並尋求幫助:(〜Paypal啤酒給任何解決它的人。將一些規則從.htacess轉換爲NGINX
我已經嘗試了一些在線轉換器,但代碼看起來很亂,我不太明白它在做什麼。規則我想已經轉換:。
# Rewrite any calls to html|json|xml|atom|rss
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.+)\.(html|json|xml|atom|rss)$ $1/ [L]
# Rewrite any calls to /render to the image resizer
RewriteCond %{REQUEST_URI} render/
RewriteRule ^render/. app/parsers/slir/ [L]
# Rewrite routes to application index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ index.php?/$1/ [L,QSA]
感謝所有幫助