Wordpress Issues
For one of my sites, I keep getting rewrite and permission errors when trying to change permalinks, upload themes, etc.
I looked at my permissions, and they're all 755, the same as my other WP sites that aren't having these issues.
As for rewrite, I added the following to my .htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
and that didn't change anything, either.
Anyone have any ideas?
|