This question already has an answer here:
I want to Rewrite the following URLs:
http://www.mywebsite.com/helloworld/
to
http://www.mywebsite.com/index.php?page=hellworld
This following rule works well for do that job:
RewriteRule ^(.*)/$ index.php?page=$1
BUT, I have a problem:
When I go to: http://www.mywebsite.com/helloworld (look the slash (/) at the end isn't present) that rule doesn't works. But using http://www.mywebsite.com/helloworld/ works well.
¿What can I do to solve this?