Forum Moderators: phranque
One big question, do you really mean 'redirect' or do you mean 'rewrite'?
What is the URL that the user sees and uses? What is the filename inside the server?
If this were my site, the URL would look like
example.com/folder/ven/354089 or example.com/folder/game/ven/354089.
i hope you understand me..
Your problem should be quite easy to fix using mod_rewrite, with a rule of the form:
RewriteRule ^pattern-to-match-requested-URL-path$ /actual-server-filepath [L]
RewriteRule ^foo\.html$ /bar\.php [L]
If you don't have any other working RewriteRules, you will need to precede that RewriteRule with either both of these lines or only the second line. You will have to test to find out, because it depends on your server configuration.
Options +FollowSymLinks
RewriteEngine on
Jim