Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: WordPress + bbpress + register plus>>>>

Where exactly in the .htaccess file would I put this? I’ve tried it above ‘# BEGIN bbPress’, also below it…any suggestions?

# BEGIN bbPress

Options -MultiViews

<IfModule mod_rewrite.c>

RewriteEngine On

RewriteBase /bbpress/

RewriteRule ^page/([0-9]+)/?$ /bbpress/index.php?page=$1 [L,QSA]

RewriteRule ^forum/([^/]+)/page/([0-9]+)/?$ /bbpress/forum.php?id=$1&page=$2 [L,QSA]

RewriteRule ^forum/([^/]+)/?$ /bbpress/forum.php?id=$1 [L,QSA]

RewriteRule ^forum/?$ /bbpress/ [R=302,L,QSA]

RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /bbpress/topic.php?id=$1&page=$2 [L,QSA]

RewriteRule ^topic/([^/]+)/?$ /bbpress/topic.php?id=$1 [L,QSA]

RewriteRule ^topic/?$ /bbpress/ [R=302,L,QSA]

RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ /bbpress/tags.php?tag=$1&page=$2 [L,QSA]

RewriteRule ^tags/([^/]+)/?$ /bbpress/tags.php?tag=$1 [L,QSA]

RewriteRule ^tags/?$ /bbpress/tags.php [L,QSA]

RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ /bbpress/profile.php?id=$1&page=$2 [L,QSA]

RewriteRule ^profile/([^/]+)/([^/]+)/?$ /bbpress/profile.php?id=$1&tab=$2 [L,QSA]

RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ /bbpress/profile.php?id=$1&tab=$2&page=$3 [L,QSA]

RewriteRule ^profile/([^/]+)/?$ /bbpress/profile.php?id=$1 [L,QSA]

RewriteRule ^profile/?$ /bbpress/profile.php [L,QSA]

RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ /bbpress/view.php?view=$1&page=$2 [L,QSA]

RewriteRule ^view/([^/]+)/?$ /bbpress/view.php?view=$1 [L,QSA]

RewriteRule ^rss/?$ /bbpress/rss.php [L,QSA]

RewriteRule ^rss/topics/?$ /bbpress/rss.php?topics=1 [L,QSA]

RewriteRule ^rss/forum/([^/]+)/?$ /bbpress/rss.php?forum=$1 [L,QSA]

RewriteRule ^rss/forum/([^/]+)/topics/?$ /bbpress/rss.php?forum=$1&topics=1 [L,QSA]

RewriteRule ^rss/topic/([^/]+)/?$ /bbpress/rss.php?topic=$1 [L,QSA]

RewriteRule ^rss/tags/([^/]+)/?$ /bbpress/rss.php?tag=$1 [L,QSA]

RewriteRule ^rss/tags/([^/]+)/topics/?$ /bbpress/rss.php?tag=$1&topics=1 [L,QSA]

RewriteRule ^rss/profile/([^/]+)/?$ /bbpress/rss.php?profile=$1 [L,QSA]

RewriteRule ^rss/view/([^/]+)/?$ /bbpress/rss.php?view=$1 [L,QSA]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^.*$ /bbpress/index.php [L]

</IfModule>

# END bbPress

Skip to toolbar