Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: WP Integration: can’t access Admin section

Hi Chris, I’ve got access to access logs, if that would help.

It appears to be .htaccess related. If I remove the .htaccess file from the WP directory my forum is accessible.

I’ve forgotten the timeline of what I was working on now (can’t multitask very well!) but it’s possibly related to this plugin that I’ve installed to get rid of a 404 problem: https://bbpress.org/forums/topic/strange-redirections-and-404s-after-wp-integration

Although when I deactivate this plugin it doesn’t make any difference. Here’s the htaccess file:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^forum/topic /forum/topic.php [QSA,L]
RewriteRule ^forum/forum /forum/forum.php [QSA,L]
RewriteRule ^forum/tags /forum/tags.php [QSA,L]
RewriteRule ^forum /forum/index.php [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

Skip to toolbar