7 lines
205 B
ApacheConf
7 lines
205 B
ApacheConf
RewriteEngine on
|
|
|
|
RewriteCond %{REQUEST_URI} !^(/index\.php|/assets/|/robots\.txt|/favicon\.ico)
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule ^(.*)$ index.php?$1 [L]
|