*** EDIT ****
Everything is working fine for the most part guys. Thanks. ^.^
---
But, here's a little more I seem to be having problems with:
I don't know if it's any more complex than above, but it certainly doesn't seem to be. The only problem left with this is the fact I'm probably bugging the lot of you.

Well, no, there's something else to it --
I'm having a small problem trying to pull something off in the Apache Virtualhosts. The wildcard works -perfect- -- it redirects to the assigned page as it should with the wildcard string to put something I've assigned to the php file in motion. That's great.
However, I'm attempting to take the same principle -- wildcard.domain.com -- and place a directory after it /without/ showing any of the URL as having the ?xx=wildcard information showing.
Example of how things show currently:
User types:
http://blah.domain.com/directory
Apache outputs:
http://blah.domain.com/directory/?xx=blah
Any way to take away the ?xx=blah?
The current <VirtualHost> setup I have is something like the following outline, roughly displayed below:
Code:
<Virtualhost ..>
..
..
DocumentRoot "rootdirectory"
<Directory "rootdirectory">
..
..
RewriteEngine On
RewriteCond ..
..
RewriteRule ..
</Directory>
<Directory "rootdirectory/directory">
..
..
RewriteEngine On
RewriteCond ..
..
RewriteRule ..
</Directory>
</Virtualhost>
Of course I can provide a better detail, I was just offering a rough sketch. I am using the [P, L] values, btw.