I am running a mutlisite TYPO3-Site.
For the pre-live process, I want to add a htaccess
with a htpasswd
for 3 / 4 sites.
How can I configure the htaccess-file to trigger the authentication only for specific urls?
For example:
http://example.org shouldn't get a password-protection, while http://example2.org should.
Both sites are on the same server and handled by the CMS.
Since the usual htaccess-stuff looks like this:
AuthUserFile /path/to/my/.htpasswd
AuthGroupFile /dev/null
AuthName "Geschützter Bereich"
AuthType Basic
<Limit GET>
require valid-user
</Limit>
It would trigger for every site.
Thanks for any advices.