Hi kiiro,
I also had this problem before but I resolved it using some checked with my .htaccess file. What I did before was, I put this following codes from wordpress.
# BEGIN WordPress
<IfModule mod_rewrite.c>
ErrorDocument 404 /index.php?error=404
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Also, if your blog is installed from other directory and not on your root like for example you installed it at http://yoursite.com/blog you must do some following changes from the code above.
# BEGIN WordPress
<IfModule mod_rewrite.c>
ErrorDocument 404 /index.php?error=404
RewriteEngine On
RewriteBase /blog
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
# END WordPress
Did you notice the changes? I make the changes in bold. Take note, before you do edit your .htaccess, you should try to make some back up on it and download it to your drive or put on the place where you can easily upload it back again and restore if something’s wrong happens.
P.S. You can find your .htaccess file from the root domain of your website.
Hope this helps but if not, maybe other users will come up with you an answer.
Thread Starter
kiioro
(@kiioro)
Thanks for the reply! Actually, what I find interesting here is that baywords doesn’t allow me to edit any of that (as far as I can tell).
Also, it seems to be a baywords issue, I’ve tried checking a few other baywords blogs and all seem to be failing. And I’m not able to tell where to contact them. Any suggestions?