Answers for ".htaccess when deploying"

0

.htaccess when deploying

Options +FollowSymLinks
IndexIgnore */*

RewriteEngine on

# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# otherwise forward it to index.php
RewriteRule . index.php
Posted by: Guest on April-19-2022

Code answers related to ".htaccess when deploying"

Browse Popular Code Answers by Language