2012-01-25 2 views
0

Я хочу преобразовать простой .htaccess файл (правила), который будет использоваться с nginx. Я пытаюсь получить доступ к онлайн-инструменту после googleit, но этот сайт не работает. Итак, если кто-нибудь поможет, я буду признателен. Спасибо. Вот мой файл .htaccess:.htaccess для nginx rewrite rules

Опции + FollowSymlinks + ExecCGI

<IfModule mod_rewrite.c> 
    RewriteEngine On 

    # we skip all files with .something 
    RewriteCond %{REQUEST_URI} \..+$ 
    RewriteCond %{REQUEST_URI} !\.html$ 
    RewriteRule .* - [L] 

    # we check if the .html version is here (caching) 
    RewriteRule ^$ index.html [QSA] 
    RewriteRule ^([^.]+)$ $1.html [QSA] 
    RewriteCond %{REQUEST_FILENAME} !-f 

    # no, so we redirect to our front web controller 
    RewriteRule ^(.*)$ index.php [QSA,L] 
</IfModule> 

ответ

1

Пожалуйста, попробуйте эти правила:

# Deny all files that started with dot 
location ~ /\. { 
     deny all; 
} 
# Try $uri - is file, $uri/ - is dir, index.html - caching, $uri.html caching, index.php -last 
location/{ 
     try_files $uri $uri/ index.html $uri.html index.php; 
} 
0

Пожалуйста, попробуйте эти правила:

# nginx configuration 

location ~ \.html$ { 
} 

location/{ 
    if ($request_uri ~ "\..+$"){ 
    rewrite ^/$ /index.html; 
    } 
    rewrite ^/([^.]+)$ /$1.html; 
    if (!-e $request_filename){ 
    rewrite ^(.*)$ /index.php break; 
    } 
}