You can do this with mod_rewrite, which you can turn on in a .htaccess file (if your provider allows this).
For example, I have a page called
http://www.swissbytes.de/tiki/tiki-i...rmonesAndWater, but I want the user to access it like
http://www.swissbytes.de/hormone or
http://www.swissbytes.de/hormones
This is what I do:
You see that a RewriteRule consists of 2 parts: the pattern (which tells apache if the rule applies) and the action.
Here the pattern sais:
if the url starts (^) with "hormone" potentially followed by "s" (because of the ?), potentially followed by "/" (another ?) and then ends ($), fire this rule.
The Rule then sais which page to redirect to, [R] sends a 302 Code back to the browser, so it knows that the page has moved.
Have Fun!