make sure if .htaccess file exists some times it's not viewable most likely if you are using cuteftp..
Now i am even getting redirected to the homepage when i try to edit my templates in Admincp. I don't have a .htaccess file in my forum folder, instead i have one on my main folder which also contains wordpress.
The .htaccess contain:
Code:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress