本文介绍了迁移:Kohana .htaccess到nginx的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我不是开发人员。我正在帮助一位朋友在Amazon(Ubuntu)使用实例服务器,我需要帮助将.htaccess转换为nginx配置。我尝试了所有承诺自动转换的网站,但均未成功。在这种情况下,您能帮我吗?

I'm not a developer. I'm helping a friend to use a instance server at Amazon (Ubuntu) and I need a help to convert the .htaccess to nginx configs. I tried any sites that promise the automatic convertion, but without success. Can You help me in this case, please?

这是.htaccess:

This is the .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]

非常感谢

推荐答案

server {
    listen 80;
    server_name www.site.dev *.site.dev;
    root /var/www/site/public_html/;


    location / {
        expires off;
        try_files $uri $uri/ @kohana;
    }

    # Prevent access to hidden files
    location ~ /\. {
        deny all;
    }

    location @kohana {
        rewrite ^/(.+)$ /index.php$request_uri last;
    }

    location ~* \.php {
        #fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param KOHANA_ENV development;
        fastcgi_cache off;
        fastcgi_index index.php;
    }
}

来源:

这篇关于迁移:Kohana .htaccess到nginx的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 06:12