Currently, I have a script that uses RewriteRule in my htaccess file. It is:
RewriteRule ^([^/]*)/$ /index.php?go=$1 [L]
This rule only works for a path such as:
http://www.mysite.com/473829/
which redirects to:
http://www.mysite.com/index.php?go=473829
What I'm trying to do is create a rule that does not require the last forward slash. That is:
http://www.mysite.com/473829
that should redirect to:
http://www.mysite.com/index.php?go=473829
Any help will be greatly appreciated.
Thank You!


