Thank you, thank you. Confirmed it is working fine. :up:
Quote:
Originally Posted by Bhuwan
I made a big BOO BOO when i uploaded the htaccess file
Everyone should edit their htaccess file and remove the existing search rewrite and replae it with
Code:
RewriteRule ^search-(.*).html$ search.php?do=$1 [L]
That's assuming that the URL is /search-getnew.html
if you use:/search-getnew.html/
then your htaccess should be this:
Code:
RewriteRule ^search-(.*).html/$ search.php?do=$1 [L]
|