Quote:
Originally Posted by redwhiteandblue
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) search.php?s=$1
is mine.
|
okie.,
Quote:
Originally Posted by fris
bad idea.
|
roger that., i left it as it is.,
Quote:
Originally Posted by raymor
Either of those lines alone will give you a 500 error.
You definitely need either:
RewriteCond %{REQUEST_FILENAME} !-f
or:
RewriteCond !search.php
Without either, /Ray redirects to search.php?Ray
search.php?Ray redirects to search.php?search.php
search.php?search.php redirects again to search.php?search.php
round and round in a circle
|
RewriteCond %{REQUEST_FILENAME} !-f
gives lots of errors.
RewriteCond !search.php
gives 500
thanks for your time.,