Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What I am trying to do is be able to point something like username.domain.com to index.php?url=username. I have been browsing around Google/StackOveflow and have not been able to find anything that will benefit me.

Best Regards.

share|improve this question

1 Answer

Add these rules to the htaccess file in your document root:

RewriteEngine On
RewriteCond %{HTTP_HOST} !^(www\.)?domain.com$ [NC]
RewriteCond %{HTTP_HOST} ^([^.]+)\.domain.com$ [NC]
RewriteCond %{REQUEST_URI} !index.php
RewriteRule ^ /index.php?url=%1 [L]

The first condition makes sure the requested host isn't www.domain.com or domain.com, the next line matches and groups the subdomain name, and the rule itself rewrites everything to /index.php with a query string url and the subdomain (backreferenced using %1).

share|improve this answer
Does not work. I am using RewriteEngine On RewriteCond %{HTTP_HOST} !^(www\.)?titancontent.com$ [NC] RewriteCond %{HTTP_HOST} ^([^.]+)\.titancontent.com$ [NC] RewriteRule ^ /index.php?url=%1 [L] and it says that GC could not find the page. – Bryan Parmenter Oct 23 '12 at 3:16
@BryanParmenter was missing a condition to exclude requests for index.php. – Jon Lin Oct 23 '12 at 3:19
Still does not work. pastebin.com/MZ15959P – Bryan Parmenter Oct 23 '12 at 3:22
@BryanParmenter What URL are you attempting to go to? – Jon Lin Oct 23 '12 at 3:29
aviance.titancontent.com - I set up in my index.php file a request to see if it hits aviance through a PHP $_GET but the page returns like it does not exist. – Bryan Parmenter Oct 23 '12 at 3:32
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.