Added .htaccess sample file

pull/534/head
dl6nm 2020-05-27 11:27:17 +02:00
rodzic 5f9665fe48
commit 52df1b7802
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: BB7D19501488FF15
1 zmienionych plików z 8 dodań i 0 usunięć

8
.htaccess.sample 100644
Wyświetl plik

@ -0,0 +1,8 @@
# If you want to hide 'index.php' from the URL, rename this file to '.htaccess' on your server
# Then change the following variable in /application/config/config.php
# $config['index_page'] = '';
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]