mirror of
https://github.com/kleeja-official/kleeja.git
synced 2025-12-14 20:19:43 +01:00
12 lines
341 B
Plaintext
12 lines
341 B
Plaintext
#start Kleeja rules
|
|
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
#If you are using subfolder thwn use /kleeja/ instead of / in the next line
|
|
RewriteBase /
|
|
RewriteRule ^index\.php$ - [L]
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule . serve.php [L]
|
|
</IfModule>
|
|
#end Kleeja rules
|