Page 1 of 1

htaccess allow folder access

Posted: Sun Nov 27, 2011 4:16 pm
by Xanthouos
I have s9y installed on the root, and need to install another cms in a folder, but the s9y doesn't allow access to that folder.
I was suggested to in the folder, create an htacess with:
<Directory>
Allow From All
Satisfy Any
</Directory>

that gave me a 500 and 404

How can I modify the root htacces to allow /newfolder to act independently and fully.

thanks.

Re: htaccess allow folder access

Posted: Sun Nov 27, 2011 7:26 pm
by Don Chambers
Well, if you are using URL rewriting in the root folder (highly recommended if available), then you could use this in your sub folder's htaccess:

Code: Select all

RewriteEngine Off
DirectoryIndex index.php
you can replace index.php with whatever your actual index file name is.