0
を捕獲しました。チェックnginxのは、私はnginxのルールを持っている変数
URLがhttp://example.com/a/
の場合、http://example.com/b/
を返します。しかし、$1
が未定義の場合はhttp://example.com/a/
が必要です。
私は失敗したif
を使用しようとしました:
location ~ ^/a/(.*) {
if ($1) {
return 301 /b/$1;
}
}