Jmainguy/multicraft_install/master/roles/multicraft/files/multicraft/panel/.htaccess - Htaccess File

Jmainguy/multicraft_install/master/roles/multicraft/files/multicraft/panel/.htaccess

Options +FollowSymLinks

<IfModule mod_autoindex.c>
IndexIgnore */*
</IfModule>

<IfModule mod_rewrite.c>
RewriteEngine on

# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule .? - [S=2]

# redirect to installer if the request ends with install.php
RewriteRule /install.php$ install.php [L]

# otherwise forward it to index.php
RewriteRule . index.php
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache