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!!!!
đơ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
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 ạ
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
bác sudo rm /var/www/html/index.html thôi, hoặc bác edit cái file httpd.conf của apache để đưa file đuôi php lên ưu tiên serve trước như này https://stackoverflow.com/questions...-apache-serve-index-php-instead-of-index-html
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
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