I'm trying to accept this:
and rewrite it as this:
This is what I have so far:
and I'm getting this as a $_GET:
I have a feeling that that question mark in the nice URL is causing problems.
Code:
/checkdomain?mydomain
Code:
/checkdomain.php?domain=mydomain
Code:
RewriteRule ^hosting/checkdomain?(.*) pages/hosting/checkdomain.php?domain=$1 [L]
Code:
Array
(
[domain] =>
)