Yess!! Thank you very very much, this helped me out. This did the trick only a little thing, how can I edit this so it can also be used for later version like version/2010.04.13.1, version/2010.04.15.1, version/2010.04.15.2 etc.. ? I think that's not so heavy but I have no idea of mod_rewrite and htaccess.
RewriteEngine On Options +FollowSymLinks DirectoryIndex index.php RewriteCond %{REQUEST_URI} !^/version/2010.04.16.1/ RewriteCond %{REQUEST_URI} !^/version/2010.04.15.1/ RewriteCond %{REQUEST_URI} !^/version/2010.04.14.1/ RewriteCond %{REQUEST_URI} !^/version/2010.04.13.1/ RewriteCond %{REQUEST_URI} !^/version/2010.04.12.1/ RewriteCond %{REQUEST_URI} !^/version/2010.04.11.1/ RewriteRule ^(.*)$ /version/2010.04.11.1/$1 [L] Code (markup): You can add as many rewrite conditions you want, but i recommend to remove them once are no longer necessary.
Aah, okey thank you alot, but is it possible to do it with regular expressions? Something like this RewriteEngine On Options +FollowSymLinks DirectoryIndex index.php RewriteCond %{REQUEST_URI} !^/version/(0-9+\.0-9+\.0-9+\.0-9)/ RewriteCond %{REQUEST_URI} !^/version/2010.04.11.1/ RewriteRule ^(.*)$ /version/2010.04.11.1/$1 [L] Code (markup): I tried like this but it didn't help. What is this code doing actually? Is it looking whether it the url isn't /version/2010.04.11.1/ and rewrite's the url like the given path?