Thread Starter
BigSky
(@bigsky)
moshu, I have a few WordPress sites on BlueHost, and they are all doing this. I don’t know if it matters, but they use Fantastico to set WordPress up. There has to be a simple solution to this, but I can’t figure it out!
Thread Starter
BigSky
(@bigsky)
Update – changing the permalink structure didn’t seem to help. I am hosting with BlueHost, if anyone here has possibly seen anything similar….
Thread Starter
BigSky
(@bigsky)
Hey pravin, thanks for the response. I just tested again, and it is reading any folders as part of WordPress. I’m starting to think it is because of how I set the permalink structure: /%category%/%postname%/ – could that be it?
Thanks again.
.htacess is as follows:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress