Files
Kleeja/htaccess.txt
2019-08-21 16:37:34 +03:00

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