up vote 0 down vote favorite
share [g+] share [fb]

I am working with PHP and htacess for the first time. I am passing a variables in a query string to a URL and want this URL to look clean. Please help.
.htaccess file

RewriteEngine On
RewriteRule ^id-([0-9]+)/([0-9A-Za-z]+).html  /detail.php?id=$1&display=$2

PHP code passing from one file to detail page URL is:

<a href='/detail.php?id={$info[id]}&display=$title1'>

Please help.

link|improve this question
What exactly is not working, and what exactly do you want to achieve? – NomadCoder Nov 6 '09 at 3:41
Could you please add an example of a URL that would resemble the left-hand side of your RewriteRule directive? – AJ. Nov 6 '09 at 3:44
feedback

1 Answer

You need to print out the new URL in order to get it rewritten by mod_rewrite. Because mod_rewrite can only rewrite URLs that are requested. So try this:

<a href='/id-{$info[id]}-$title1.html'>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.