# Upload this as ".htaccess" into public_html/HR/
#
# This is Laravel's own public/.htaccess with one line added: RewriteBase.
#
# Without it the trailing-slash rule below rewrites /HR/settings/ to /settings,
# dropping the folder the site lives in, and every such URL 404s. The rule is
# relative to the document root, which is not the folder this file is in.
#
# Do not add rules here to hide app/, config/, storage/ or vendor/. Those
# folders must not be inside public_html at all. If you find yourself needing to
# block them, the files are in the wrong place.

<IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
        Options -MultiViews -Indexes
    </IfModule>

    RewriteEngine On
    RewriteBase /HR/

    # Handle Authorization Header
    RewriteCond %{HTTP:Authorization} .
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

    # Handle X-XSRF-Token Header
    RewriteCond %{HTTP:x-xsrf-token} .
    RewriteRule .* - [E=HTTP_X_XSRF_TOKEN:%{HTTP:X-XSRF-Token}]

    # Redirect Trailing Slashes If Not A Folder...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} (.+)/$
    RewriteRule ^ %1 [L,R=301]

    # Send Requests To Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
</IfModule>
