Wordpress Permalink error 404 file not found
Wordpress Permalink
error 404 file not found
Untuk anda yang mendapatkan error seperti diatas ketika mengaktifkan permalink di wordpress, tambahkan kode berikut di file .htaccess. file ini bisa anda temukan di folder public_html di hosting anda.
Gunakan File manager di cpanel untuk mengedit file .htaccess, pastikan pilihan "show hidden file" aktif ketika membuka File manager.
Code file .htaccess:
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
error 404 file not found
Untuk anda yang mendapatkan error seperti diatas ketika mengaktifkan permalink di wordpress, tambahkan kode berikut di file .htaccess. file ini bisa anda temukan di folder public_html di hosting anda.
Gunakan File manager di cpanel untuk mengedit file .htaccess, pastikan pilihan "show hidden file" aktif ketika membuka File manager.
Code file .htaccess:
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
Comments