LINUX.ORG.RU
ФорумAdmin

Помогите настроить редиректы nginx

 , ,


0

1

Всем добра, помогите пожалуйста правильно прописать правила под nginx, сейчас работаю на apache, пытаюсь сайты перенести на nginx, но увы кроме главной страницы ничего не работает

Текущие правила htaccess:

# Redirect to www
RewriteCond %{REQUEST_URI} !robots\.txt$
RewriteCond %{HTTP_HOST} !^www [NC]
RewriteRule .* http://www.%{HTTP_HOST}/$0 [R=301,L]


# Redirect urls with no trailing slash
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/odminka/
RewriteCond %{REQUEST_URI} !^/guide
RewriteCond %{REQUEST_URI} !\.xml$
RewriteCond %{REQUEST_URI} !\.txt$
 RewriteCond %{REQUEST_URI} !/$
RewriteRule .+ $0/ [R=301,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]

AddDefaultCharset utf-8
Фреймворк kohana



Последнее исправление: papik (всего исправлений: 1)

Ответ на: комментарий от Difrex

если бы все так просто было, тут не написал

papik
() автор топика

сейчас конфиг выглядит так:

#redirect to www start
server {
    listen 80;
    server_name test.ru;
    return 301 $scheme://www.test.ru$request_uri;
}
#end

server {
      listen 80;
      root /gopanel/sites/www_test_tu/www;
      index index.php;
      server_name www.test.ru;


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

location ~ \.php$ { 
	try_files $uri =404; 
fastcgi_split_path_info ^(.+\.php)(/.+)$;
	fastcgi_pass unix:/var/run/php/php7.2-fpm.sock; 
	fastcgi_param HTTP_PROXY ""; 
	fastcgi_index index.php; 
	fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 
	include fastcgi_params; 

fastcgi_split_path_info ^(.+?\.php)(/.+)$;
} 

#Deny access to Git catalog
	location ~ /.git/ {
		deny all;
	}

error_page 404 /404.html;
 #my 404
      location = /404.html {
        root /gopanel/sites/www_test_tu/www;
        internal;
    }
}

papik
() автор топика
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.