Hi Guys,
I'm trying to make a rewrite rule and I just can't seem to understand regular expressions at all.
Sorry for my ignorance. It is just not my cup of tea
Would someone be so kind as to paste me an example to get this running....
I have a sub directory with 1 php file that is a full details veiw...
/subdir/page.php?key=1464466
I have aprox 1.4 million plus pages ands all are referenced by the id number in this case
Code:
RewriteRule ^(.*)$ page.php?key=$1 [L,QSA]
I want to generate links as <?php print $url-root . "/subdir/1464466.htm"; ?>
and rewrite to take care of the request
After pullingmy hair I'm turing to you guys
Thanks,
RD
|