我有以下重写规则。他们需要获得 CoolURI fortypo3 在 apache 服务器上工作。现在我想对 nginx 服务器做同样的事情。
RewriteEngine On
RewriteRule ^/(typo3|typo3temp|typo3conf|t3lib|tslib|fileadmin|uploads|showpic\.php)$ - [L]
RewriteRule ^/(typo3|typo3temp|typo3conf|t3lib|tslib|fileadmin|uploads|showpic\.php)/.*$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php
任何人都可以帮我将它们转换为 nginx conf 吗?我找到了这个http://nginx.org/en/docs/http/converting_rewrite_rules.html但我对 nginx 真的很陌生,无法弄清楚如何转换它......
有任何想法吗?