How to Fix WordPress Posts Returning 404 Error - wordpress 404 not found
Khi truy cập vào Webstie wordpress trang home thì Ok, tuy nhiên các trang khác bị lỗi như sau:
==================
404 Not found error
==================
Khả năng là wordpress của bạn thiếu file .htaccess.
Bạn tìm lại file này hoặc tạo file .htaccess với nội dung như sau trong source web là Ok
Trích dẫn:
|
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
|
Tham khảo thêm:
http://www.wpbeginner.com/wp-tutoria...ing-404-error/
