Re: Restrict subdirectory access based on host name

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

Thanks for your response. The below is what I currently have it. But, when I
use www.sc.com/cs then I was able to access it. However, I would like to
restrict it. So, only www.sc.org can go to cs folder, and www.sc.com can go
to dam folder

NameVirtualHost *:7777

<VirtualHost *:7777>
    DocumentRoot "/usr/local/apache/htdocs/cs"
    ServerName www.sc.org
</VirtualHost>

<VirtualHost *:7777>
    DocumentRoot "/usr/local/apache/htdocs/dam"
    ServerName www.sc.com
</VirtualHost>



Yehuda Katz wrote:
> 
> On Thu, May 5, 2011 at 11:41 PM, Ndmigration <ndmigration@xxxxxxxxx>
> wrote:
> 
>> www.sc.org should serve site from a folder called "cs"
>> www.sc.com should serve site from a folder called "dam"
>>
>> but I don't want them to be interchangeable like www.sc.org/dam or
>> www.sc.com/cs. How to restric this?
>>
> 
> Are they in a NameVirtualHost or the default site for the IP?
> If they are in one named vhosts, you could separate it into two and use
> directory/location directives in the vhost config.
> You could also make them vhosts now even though they weren't before.
> 
> Otherwise, I would suggest mod_rewrite.
> Something like this might work (although I did not test it)
> 
>> RewriteCond %{HTTP_HOST} !^www\.sc\.com [NC]
>> RewriteCond %{HTTP_HOST} !^$
>> RewriteRule ^dam/?(.*) - [F]
>>
> 
> 
> RewriteCond %{HTTP_HOST} !^www\.sc\.org [NC]
>> RewriteCond %{HTTP_HOST} !^$
>> RewriteRule ^cs/?(.*) - [F]
> 
> 
> - Yehuda
> 
> 

-- 
View this message in context: http://old.nabble.com/Restrict-subdirectory-access-based-on-host-name-tp31555898p31555998.html
Sent from the Apache HTTP Server - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx
   "   from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx
For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx



[Index of Archives]     [Open SSH Users]     [Linux ACPI]     [Linux Kernel]     [Linux Laptop]     [Kernel Newbies]     [Security]     [Netfilter]     [Bugtraq]     [Squid]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Samba]     [Video 4 Linux]     [Device Mapper]

  Powered by Linux