Page 1 of 1

home age .HTACCESS replication for child folder in htdocs

PostPosted: Fri Jul 14, 2017 3:55 pm
by raidsm
Hi!

I did post some personnal websites (WordPress , ajaxplorer etc). Unfortunately , in the fvdw 17 version , parent .htaccess for the management webpage , .htaccess has a basic authentification that is replicate to all "child" folder. So the .htaccess force a basic auth on all published pages on the server.

I know that the htaccess child can't bypass the parent .htaccess so is there a way to move the nas management webpage on a subdirectory so his .htaccess won't interfere with other folder?

My goal is to remove the basic auth for ajaxplorer or WordPress...

BTW I'm testing ajaxplorer (all versions) and the speed is great on the version 4. MySQL is slow so I did try WordPress with qslite instead and it's been fast since. There is a way to use pydio with sqlite but there are login problems wich i'm looking at...)

Re: home age .HTACCESS replication for child folder in htdoc

PostPosted: Fri Jul 14, 2017 5:16 pm
by Jocko
Hi raidsm

You just need to put these lines in a .htaccess file stored in your folder :scratch
Code: Select all
   AuthType None
   Require all granted

Re: home age .HTACCESS replication for child folder in htdoc

PostPosted: Fri Jul 14, 2017 5:24 pm
by raidsm
Great thanks!