رفع خطای ۴۰۴ لاراگون در وب سرور انجین ایکس
برای سابسکرایب لطفا روی لینک زیر کلیک و گزینه سابسکرایب را حتما انتخاب کنید:
https://www.youtube.com/@amoozyir?sub_confirmation=1
کد های مورد نیاز:
server {
listen 80;
server_name main.test *.main.test;
root “C:/laragon/www/main”;
index index.html index.htm index.php;
location / {
try_files $uri $uri/ /index.php$is_args$args;
autoindex on;
}
location ~ .php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass php_upstream;
unix:/run/php/php7.0-fpm.sock;
}
charset utf-8;
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
location ~ /.ht {
deny all;
}
}