I have the following .htaccess file in a directory:
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://www.mysite.com/launch [R,L]
DirectoryIndex index.html
Basically, this forces any and all pages below mysite.com/launch to an SSL version of https://www.mysite.com/launch/index.html.
However, for a single sub-directory under /launch I need to be able to allow access without user being redirected.
For example, if they navigate to www.mysite.com/launch/files/photos, then they should be able to access individual files inside the /photos directory.
Do I use another .htaccess file inside the /photos directory, or do I modify the existing .htaccess file in the /launch directory?