Xin các bác giúp em lỗi lầm này ạ

Discussion in 'Thảo Luận Chung' started by Lahm, Jun 3, 2018.

  1. Lahm

    Lahm Sơ Nhập Giang Hồ

    Em setup site wp xong cứ bị như này, Mong các cao nhân chỉ giúp em cách fix ạ. Em cám ơn các bác nhiều!!!!
    [​IMG]
     
  2. thitgaluoc

    thitgaluoc Hương Chủ

    đơn giản là xóa cái index.html đi, không thì sửa apache config serve php extension trước, chi tiết bác google nha
     
  3. Hoa Mãn Lâu

    Hoa Mãn Lâu Trưởng Môn

    reload lại cái nginx nhé. Cho nó cập nhật code
     
  4. console

    console Bang Chúng

    Apache2 ma
     
  5. Lahm

    Lahm Sơ Nhập Giang Hồ

    em tìm không thấy cái file đó bác ạ :( nhẽ lại xóa luôn cả folder đó ạ :(
     
  6. Lahm

    Lahm Sơ Nhập Giang Hồ

    như này à bác:
    Code:
    https://www.cyberciti.biz/faq/star-stop-restart-apache2-webserver/
    em làm vậy vẫn ko đc ạ :(
     
  7. Lahm

    Lahm Sơ Nhập Giang Hồ

    reload báo OK mà site vẫn thế ạ :(
     
  8. thitgaluoc

    thitgaluoc Hương Chủ

    This is the default welcome page used to test the correct operation of the Apache2 server after installation on Ubuntu systems. It is based on the equivalent page on Debian, from which the Ubuntu Apache packaging is derived. If you can read this page, it means that the Apache HTTP server installed at this site is working properly. You should replace this file (located at /var/www/html/index.html) before continuing to operate your HTTP server.


    xóa file ở chỗ bôi đỏ ấy
     
  9. Lahm

    Lahm Sơ Nhập Giang Hồ

    làm như nào để nhìn thấy file đó a nhỉ, e thử xóa bằng lệnh rm mà ko đc ạ
     
  10. thitgaluoc

    thitgaluoc Hương Chủ

  11. automan

    automan Hương Chủ

    Có chạy Virtual host ko ?

    1. không chạy thì xóa như trên
    Code:
    rm -rf /var/www/html/index.html


    view xem còn file đó không
    Code:
    cd /var/www/html
    ls -al
    
    2. có xài virutla host, đã enable host site chưa ? Lệnh enable cho ubuntu
    Code:
    sudo a2ensite domain.com.conf
    
    Cách config virtual host trên ubuntu :
    Code:
    mkdir - p /var/www/domain.com/public_html
    
    Code:
    nano /etc/apache2/sites-available/domain.com.conf
    
    Rồi paste cái này vô, sửa lại cho đúng theo site bạn
    Code:
    <VirtualHost *:80>
    <Directory /var/www/domain.com/public_html/>
            AllowOverride All
            Order allow,deny
            allow from all
            </Directory>
            AccessFileName .htaccess
        ServerName www.domain.com
        ServerAlias domain.com
        DocumentRoot /var/www/domain.com/public_html
        ErrorLog /var/www/domain.com/error.log
       # CustomLog /var/www/domain.com/requests.log combined
    </VirtualHost>
    
    Save file lại, làm tiếp cái sau
    - enable htaccess
    Code:
    sudo a2enmod rewrite
    
    - enable site domain.com
    Code:
    sudo a2ensite domain.com.conf
    
    - reload apache2
    Code:
    sudo service apache2 reload
    
    chúc thành công {byebye}
     
    Last edited: Jun 4, 2018
  12. Lahm

    Lahm Sơ Nhập Giang Hồ

    em không chạy vtr host ạ.
    em view file thì không thấy file html đó nên chạy lệnh xóa cũng báo not found ạ

    đoạn cuối cám ơn bác vì quá chi tiết