web-dev-qa-db-ja.com

nginx [emerg]不明な「0」変数

.htaccessをnginxに変換するために2日間試しましたが、元のファイルは次のように書き換えられます。

# Turn on URL rewriting
RewriteEngine On

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]

# List of files in subdirectories will not be displayed in the browser
Options -Indexes

# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

AddDefaultCharset utf-8
AddCharset UTF-8 .htm .html .txt
AddType "text/html; charset=UTF-8" .htm .html .txt
AddType "text/css; charset=UTF-8" .css
AddType "text/javascript; charset=UTF-8" .js

# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT]

私はこれを思い付くことができました:

# nginx configuration 
charset utf-8; 
autoindex off; 

location /application {
rewrite ^/(?:application|modules|system)\b.* /index.php/$0 break;
} 
location /modules {
rewrite ^/(?:application|modules|system)\b.* /index.php/$0 break;
}
location /system { 
rewrite ^/(?:application|modules|system)\b.* /index.php/$0 break; 
} 
location / { 
if (!-e $request_filename){ 
rewrite ^(.*)$ /index.php/$0; 
} 
} 
location ~ \.* { 
deny all; 
}

しかし、nginxを再起動すると、次のようになります。

[emerg] unknown "0" variable
nginx: configuration file /etc/nginx/nginx.conf test failed

なぜなのかわかりません。誰かがこれを手伝ってくれる?

3
Adrian

nginxには$0変数がありません。これは、Apacheの正規表現パターンマッチ全体にApacheで使用されます。

Nginxでは、$request_uriを使用して同等の文字列を取得します。

したがって、次のような構成を使用する必要があります。

charset utf-8;
autoindex off;

location ~ /\.* {
    deny all;
}

location ~ /(?:application|modules|system) {
    return 301 /index.php$request_uri;
}

# Try first the actual files, if they do not exist, then try $request_uri via `index.php`.
try_files $uri $uri/ /index.php/$request_uri;

ここで隠しファイルの正規表現も修正しました。

2
Tero Kilkanen

Nginx rewriteregexには$ 0変数がありません。サポートされているものと交換する必要があります。

0