- Read/Write Expired: 1 Minute
WordPress Default htaccess Content
From time to time, you may need default htaccess file content in WordPress installations. In this case, you can return to the default htaccess configurations using the codes below.
# BEGIN WordPress
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress