Link to home
Start Free TrialLog in
Avatar of Peter Kroman
Peter KromanFlag for Denmark

asked on

How to create access to one specific folder on a domain with no access

Hi,

I have a domain I primarily use for development. I need to generally keep this domain from searchmachines and from indexing.

But I have one folder in the domain that I need to be open to access so that I can use it in an iFrame on another page.

I have a .htaccess file looking like this in the root of this domain:
IndexIgnore *
RewriteEngine On 
RewriteCond %{HTTPS} !=on
RewriteRule ^/?(.*) https://%{HTTP_HOST}/$1 [R,L]

Open in new window


My question is how I can create a .htaccess file (or something else) that ensures the needed access to this particular folder,
ASKER CERTIFIED SOLUTION
Avatar of Peter Kroman
Peter Kroman
Flag of Denmark image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Peter Kroman

ASKER

Forget this question. It turned out to be an application problem.