0
我不是開發人員。我正在幫助朋友在亞馬遜(Ubuntu)使用實例服務器,我需要幫助將.htaccess轉換爲nginx配置。我嘗試了任何承諾自動轉換的網站,但沒有成功。你能幫我解決這個問題嗎?遷移:Kohana .htaccess到nginx
這是的.htaccess:
#http://# Turn on URL rewriting
RewriteEngine On
# Installation directory
RewriteBase/
# Protect hidden files from being viewed
<Files .*>
Order Deny,Allow
Deny From All
</Files>
# Protect application and system files from being viewed
RewriteRule ^(?:application|modules|system)\b.* index.php/$0 [L]
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT]
非常感謝