Files
Kleeja/htaccess.txt

12 lines
341 B
Plaintext
Raw Normal View History

2018-01-09 02:09:07 +03:00
#start Kleeja rules
<IfModule mod_rewrite.c>
2019-02-25 19:55:13 +03:00
RewriteEngine On
2019-08-21 16:37:34 +03:00
#If you are using subfolder thwn use /kleeja/ instead of / in the next line
2019-02-25 19:55:13 +03:00
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
2019-08-21 16:37:34 +03:00
RewriteRule . serve.php [L]
2018-01-09 02:09:07 +03:00
</IfModule>
2019-08-21 16:37:34 +03:00
#end Kleeja rules