pull down to refresh
Looking quickly at it I think you need to put in an exception for the well-known file location. This answer should help:
https://stackoverflow.com/questions/12865780/mod-rewrite-exception-for-a-specific-file
reply
If you see this in time you might edit it to put four spaces before each line of code or put the whole code block between three backticks (`). It'll then look like this in preview.
this is codereply
Thanks for the bounty award, have a nice day!
reply
Thanks for the reply. I think this is what you mean? This is in the original .htaccess file on my server. I did not write these--I am just using the Wordpress template I got with the hosting provider along with Woocommerce.
BEGIN WordPressBEGIN WordPress
The directives (lines) between "BEGIN WordPress" and "END WordPress" areThe directives (lines) between "BEGIN WordPress" and "END WordPress" are
dynamically generated, and should only be modified via WordPress filters.dynamically generated, and should only be modified via WordPress filters.
Any changes to the directives between these markers will be overwritten.Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c> 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] </IfModule>