So -- I've used mod rewrite a few thousand times to do things like changing url.tld/show/season/1 to load video.php?show=someshow&season=1.
However -- Now i need to do the opposite, show a temporary HTML page instead of serving PHP on those pages.
myshows.com/seasons/?sid=1
I've tried doing a rewrite cond including the ?, but it never seems to work.
RewriteRule ^/seasons/\?sid=1 migrating.html
EDIT I need to make sure the only page effected is the SID=1, not any of the other possible season ID's
Any ideas?
Took a bit of work to find, but
Did the trick.