I'm using a code snippet from the Invision Power Board forum software on my own site to, sort of, connect the two. I have a "member bar" that I wanna put on every page in my website that has a login link, profile link, etc. I've already done this, the only problem is that on the pages I want to implement it on, I have to put a ? after the ".php". So I need a mod_rewrite condition that turns
http://www.mysite.com/index.php
into http://www.mysite.com/index.php?
http://www.mysite.com/html/about.php
into http://www.mysite.com/html/about.php?
I know this is probably very simple, but I've tried to learn regular expressions and it gives me a headache every time I try haha.
Also, an aside question: for the index page, instead of doing http://www.mysite.com/index.php?
, would http://www.mysite.com/?
work as well?