Привет, у меня беда. Всегда работал с апачем, а щас попросили поставить проект на nginx.
Есть такой .htaccess
RewriteEngine On
RewriteCond %{REQUEST_URI} !(\.png|\.jpg|\.gif|\.jpeg|\.zip|\.css|\.svg|\.js)$
RewriteRule (.*) index.php [QSA,L]
Как его конвертировать в конфиг nginx?
Щас выглядит конфиг так:
server {
listen 80;
root /var/www/html;
index index.php index.html index.htm index.nginx-debian.html;
server_name example.com;
rewrite !(\.png|\.jpg|\.gif|\.jpeg|\.zip|\.css|\.svg|\.js)$ index.php last;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}