NWSTech
04-13-2007, 08:26 AM
hi,
im trying to make my site a little more friendly for search engines and also to add to security of my site, by using mod_rewrite to change the urls to hide what variables are being passed around
currently my 'login.php' uses the following address when you login - - - login.php?loguid=<username>&logpwd=<password>&submit=Submit
the site is designed to work on a mobile phone so ive got to use get vars for that page at least.
the rewrite rule ive tried is
RewriteEngine On
RewriteRule ^login/(.*)/(.*) /login.php?loguid=$1&logpwd=$2
but it just throws me a 500 internal server error
im trying to make my site a little more friendly for search engines and also to add to security of my site, by using mod_rewrite to change the urls to hide what variables are being passed around
currently my 'login.php' uses the following address when you login - - - login.php?loguid=<username>&logpwd=<password>&submit=Submit
the site is designed to work on a mobile phone so ive got to use get vars for that page at least.
the rewrite rule ive tried is
RewriteEngine On
RewriteRule ^login/(.*)/(.*) /login.php?loguid=$1&logpwd=$2
but it just throws me a 500 internal server error
