bbPress URL Rewrite shenanigans
-
Good Morning all,
This is an issue I have had present on my bbPress forum ever since I moved away from Apache, and onto lighttpd. The difference is, I have to add the rules manually to get them to work. Anyway, here is what I currently have in my .htaccess equivalent:
# This is mainly a fix for bbPress and its functions url.rewrite = ( "^//(wp-admin|wp-includes|wp-content|gallery2)/(.*)" => "$0", "^//(.*)\.(.+)$" => "$0", "^//(.+)/?$" => "/index.php/$1" ) }
Unfortunately, whenever I try to perform an action on a post (e.g anything that utilises the “?action” URL argument), it redirects back to the post. E.g:
http://rockstarwire.net/community/thread/yrs/edit/?action=merge – Will navigate to the edit post page.
http://rockstarwire.net/community/thread/bbcodes-have-been-temporarily-disabled/?action=bbp_toggle_topic_close&topic_id=983 – Will navigate to the post again. (and won’t close the topic)Now I am pretty sure this is going to be something to do with the URL redirects, infact, I am almost positive that will be the case.
Could anyone assist with this one?
Thanks
- You must be logged in to reply to this topic.