I have been searching the forums and web with no working solutions. I tried almost every solutions found here but so far no luck....
Here is it: I have a website
http://example.com/user=me
and I want that when the user enter
me.example.com
he gets the content of
http://example.com/user=me
. note that I do not have a me.example.com subdomain, how can I achieve this?
Maybe relevent if I add that I'm on a shared server.
I've seen many .htaccess script, copied and pasted them but so far no luck.
here is my htaccess (for removing the .php)
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule !.*\.php$ %{REQUEST_FILENAME}.php [QSA,L]
AddHandler application/x-httpd-php55 .php55 .php
any help?