mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 02:14:13 +00:00
18 lines
526 B
Plaintext
18 lines
526 B
Plaintext
# 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'] = '';
|
|
|
|
Options -Indexes
|
|
ServerSignature off
|
|
|
|
RewriteEngine On
|
|
|
|
RewriteCond %{REQUEST_URI} ^/backup/$
|
|
RewriteRule ^(.*)$ /index.php?/$1 "[L,QSA,B= ?,BNP]"
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule ^(.*)$ /index.php?/$1 "[L,QSA,B= ?,BNP]"
|
|
|
|
RedirectMatch 404 ^/\.git
|
|
RedirectMatch 410 ^/sitemap |