i have a site
site.com/?w=thisworks
site.com/w/thisalsoworksmanually
i got this to work via htaccess
now i have a form... when it gets submitted
i get site.com/?w=stuffsubmitted
i'm trying to have it auto redirect to site.com/w/stuffsubmitted
here is my htaccess that works
RewriteEngine on
RewriteRule ^w/([^/]+)/?$ /index.php?w=$1 [L]
basically..i want to auto redirect to a clean url when form gets submitted.. if you need some more clarification..please ask.