Link to home
Start Free TrialLog in
Avatar of hankknight
hankknightFlag for Canada

asked on

Combine three .htaccess files

How can I combine these three .htaccess files into a single  .htaccess file?

#### /home/me/html/.htaccess #####
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteRule ^(.*) xyz.php

#### /home/me/html/zooph/.htaccess #####
RewriteEngine On
RewriteBase /zooph/
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteRule ^(.*) zooph.php

#### /home/me/html/zooph/data/.htaccess #####
order allow,deny
deny from all

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of arober11
arober11
Flag of United Kingdom of Great Britain and Northern Ireland 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