The web server is Apache. I want to rewrite URL so a user won\'t know the actual directory. For example: The original URL:
http://www.example.com
You need to define a rewrite rule (should be similar to this):
RewriteRule ^/(.*)/en/piecework/(.*)piecework_id=([0-9]+)(.*) piecework.mydomainname.com/en/$3
and put it in a .htaccess file under the main folder of you site
Full description of Rewrite rules here: http://httpd.apache.org/docs/2.0/misc/rewriteguide.html
EDIT
Made a mistake in my rule, hopefully I corrected it.