I gather that there's lots of people having difficulties due to a server update. I think my problems may be unrelated but perhaps not.
I was trying to change my .htaccess to restrict access to a subdirectory.
First, I copied .htaccess into that directory and made a few small changes. I quickly found out I was getting errors and unable to access the directory at all.
I deleted the copied .htaccess from that directory. Still errors.
This was when I found out that apparently there's only 1 .htaccess file on the server, and when I copied it into the subdirectory and made changes, it changed the parent file as well.
So then I restored my .htaccess back to it's original wp standard
Still however getting errors. From the behavior I'm wondering if there could be a cached version of my subdirectory .htaccess floating around the server somewhere.
Here is a copy of my current (and original .htaccess)
###begin copy
# 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
###end copy
I was trying to change my .htaccess to restrict access to a subdirectory.
First, I copied .htaccess into that directory and made a few small changes. I quickly found out I was getting errors and unable to access the directory at all.
I deleted the copied .htaccess from that directory. Still errors.
This was when I found out that apparently there's only 1 .htaccess file on the server, and when I copied it into the subdirectory and made changes, it changed the parent file as well.
So then I restored my .htaccess back to it's original wp standard
Still however getting errors. From the behavior I'm wondering if there could be a cached version of my subdirectory .htaccess floating around the server somewhere.
Here is a copy of my current (and original .htaccess)
###begin copy
# 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
###end copy