Hi,
I am new to .htaccess and am trying to get it to rewrite - I have this code and it sort of works:
RewriteRule ^[A-Z0-9_-]+\.html /topic.php?Topic=$1 [NC,L]
the mysite.com/This-Is-The-Page.html partly shows - ie: all of the graphics and layouts but not the content.
If I enter the URL mysite.com/topic.php?Topic=This-Is-The-Page it comes up and the content as well.
On the topic.php page I have
$CatName = str_replace("-", " ", $_GET['Topic']);
and I do a query on the mysql database taken from the $CatName
I am guessing I am missing a step or character somewhere in the .htaccess or the php?
Any help and guidance to get this working will be much appreciated.
Thank you for your time.