Are Permalink and Image Upload issues connected to .htaccess?
-
I’m still having weird Permalink problems – see thread here (https://www.ads-software.com/support/topic/whats-causing-categories-and-tag-links-go-to-error-404-page?replies=14#post-2783009) – which Esmi suggested had to do with the .htaccess file and that I should get in touch with my host, which I did but they were no use. Now, I’m not able to upload images to my site – getting html errors on crunching. I’ve looked around and, again, implications are that it’s to do with .htaccess file. So, I’ve gone into my FTP manager and located four .htaccess files. The code in each is below. If anyone knows about these things, could they say whether these files are where they should be and say the things they’re supposed to say. Any other suggestions as to my issues would be much appreciated. Thanks.
1. html directory>.htaccess
# 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
2. db backups>.htaccess
AuthType Basic AuthName "User Backups" AuthUserFile /home/content/03/9159303/html/stats/.statspwd require valid-user Options +Indexes
3. current>.htaccess
# 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
4. WP admin>.htaccess
# 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
- The topic ‘Are Permalink and Image Upload issues connected to .htaccess?’ is closed to new replies.