htaccess rewrite rule help needed.
these both giving me 500 error
RewriteRule ^(.*)$ /search.php?s=$1 [L]
RewriteRule ^([^/]*)$ /search.php?s=$1 [L]
can anybody help. ?
what i wanted to do is
domain.com/anything to go to domain.com/search.php?s=anything
thanks
|