Hi,
The solution might be quite simple, but I'm having trouble locating it. Can anyone direct me the right place?
I host six websites with separate domains from one server (one of which is a primary domain, hosted in the root folder)
Presently, any .htaccess 301 folder re-directs that I put in the in the root folder affect not only the primary domain, but all sub-domains as well.
How do I avoid this?
Thanks.
How do I use .htaccess in the root folder without affecting sub-domains?
|
Light Poster
|
|
| 24Sep2009,20:15 | #1 |
|
Go4Expert Founder
|
![]() |
| 25Sep2009,09:48 | #2 |
|
There is a way you can Test the Host and only take action for your main host and not sub-domain.
|
|
Go4Expert Member
|
|
| 25Sep2009,14:09 | #3 |
|
Have you hosted direct or using any panel
|
|
Go4Expert Founder
|
![]() |
| 25Sep2009,14:18 | #4 |
|
Light Poster
|
|
| 26Sep2009,03:11 | #5 |
|
Quote:
Originally Posted by shabbir Thanks |
|
Go4Expert Founder
|
![]() |
| 26Sep2009,10:04 | #6 |
|
You should use something like this
Code:
RewriteCond %{HTTP_HOST} my\.go4expert\.com$ [NC]
RewriteRule ........
medoomi
like this
|
|
Light Poster
|
|
| 26Sep2009,18:50 | #7 |
|
Quote:
Originally Posted by shabbir (I'm not sure of the right way to write this. I put myhostname for the domain name without the http and myhostnamewithhttpatthefront for the domain name with the http) Code:
RewriteCond %{HTTP_HOST} myhostname$ [NC]
RewriteRule /gallery.html myhostnamewithhttpatthefront/gallery.php [r=301,nc]
|
|
Go4Expert Founder
|
![]() |
| 27Sep2009,11:13 | #8 |
|
Probably then post the exact one but you would need double digit post count for that and making genuine posts in the forums can get you that easily
|
|
Light Poster
|
|
| 28Sep2009,02:06 | #9 |
|
Light Poster
|
|
| 30Sep2009,07:31 | #10 |
|
OK, I've got it running, using the following code:
(I didn't realise the backslashes were necessary for the periods), and that I should not begin the rewriterole with a forward slash) RewriteCond %{HTTP_HOST} my\.go4expert\.com$ [NC] RewriteRule ^gallery.html$ newurl [r=301,nc] |


