Mobile app version of vmapp.org
Login or Join
Goswami781

: Joomla internal only page I have a LAMP setup and Joomla. I want to have some URLs/pages in my Joomla website only internally to my subnet. Is there a file/URL equivalent for Directory like

@Goswami781

Posted in: #Apache2 #Joomla

I have a LAMP setup and Joomla. I want to have some URLs/pages in my Joomla website only internally to my subnet. Is there a file/URL equivalent for Directory like this?

<Directory /usr/share/biowiki>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order deny,allow
deny from all
Allow from subnet-address
</Directory>


Or is there any alternative to achieve this?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Goswami781

1 Comments

Sorted by latest first Latest Oldest Best

 

@Si4351233

did it my self using Location

<Location /contact/login-here>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order deny,allow
deny from all
Allow from subnet-ip
</Location>


this will mean URL mywebserver.com/contact/login-here is viewable only locally.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme