Hey, I’ve got a forum script named TinyBB(.net), and yesterday I started working on a multi-forum script for it, so we can allow users to create a free forum of their own easily.
Today I ran into my first obstacle that is impossible for me to think of a way around due to my tiredness and confusion.
My htaccess file which controls what I’m doing is this
RewriteRule ^([a-zA-Z0-9_-]+)$ hostedforums/index.php?forum=$1
RewriteRule ^([a-zA-Z0-9_-]+)/$ hostedforums/index.php?forum=$1
When you visit site.com/myforum it masks the url of site.com/hostedforums/index.php?forum=myforum
Now I’ve hit a brick wall, since this is what is needed to browse pages.
forumexample.com/forum/?page=login/register ect
But since this is already doing ?forum=myforum, it cannot do ?page
if you follow.
So I’m looking for a way around this, sorry if you don’t quite understand.