mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-03-07 02:16:50 +01:00
10 lines
254 B
ApacheConf
10 lines
254 B
ApacheConf
# Settings to hide index.php and ensure pretty urls
|
|
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
|