The htaccess file was moved to the includes directory to improve project organization. This change helps maintain a cleaner directory structure and better aligns related files.
4 lines
125 B
Plaintext
4 lines
125 B
Plaintext
RewriteEngine on
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteCond %{REQUEST_FILENAME}\.php -f
|
|
RewriteRule ^(.*)$ $1.php [NC,L] |