• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn fix lỗi nginx tải về tập tin php trên Ubuntu 14.04

Admin

Well-Known Member
Staff member
Administrator
Nếu bạn sử dụng nginx mà bị lỗi tải về tập tin .php bạn làm như sau
Đăng nhập ssh và chạy lệnh
Code:
sudo nano /etc/nginx/sites-available/default
Xóa tất cả đi và thay bằng
Code:
server {
    listen 80 default_server;
    listen [::]:80 default_server ipv6only=on;

    root /usr/share/nginx/html;
    index index.php index.html index.htm;

    server_name server_domain_name_or_IP;

    location / {
        try_files $uri $uri/ =404;
    }

    error_page 404 /404.html;
    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
        root /usr/share/nginx/html;
    }

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



Sau đó chạy lệnh
Code:
sudo service nginx restart
Vậy là xong
Mọi thắc mắc vui lòng hỏi đáp ở đây
Chúc các bạn thành công!
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top