mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 02:14:13 +00:00
make htaccess sample file more visible
This commit is contained in:
17
htaccess.sample
Normal file
17
htaccess.sample
Normal file
@@ -0,0 +1,17 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user