Skip to content

Instantly share code, notes, and snippets.

@tobijibu
Last active February 3, 2017 03:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tobijibu/07fe4681058c6b81c65948c4ea392d5c to your computer and use it in GitHub Desktop.
Save tobijibu/07fe4681058c6b81c65948c4ea392d5c to your computer and use it in GitHub Desktop.
# Enable this to restrict editing to logged in users only
# You should disable Indexes and MultiViews either here or in the
# global config. Symlinks maybe needed for URL rewriting.
# -Indexes : ディレクトリリスティングを禁止します。index.html等が存在しない場合に、ファイル一覧を表示させない設定です。
# -MultiViews : 拡張子が指定されていないファイルへのアクセスがあった場合に、
# 対象ファイルの候補を探索して、自動的に拡張子を付与してアクセスする仕組みです。
# 基本的にDokuWikiでは不要なので無効化します。
Options -Indexes -MultiViews +FollowSymLinks
# make sure nobody gets the htaccess, README, COPYING or VERSION files
# DokuWikiのルートディレクトリにある特定のファイルへのアクセスを禁止します。
# 特定のファイルは、.htで始まるファイル、README、VERSION、COPYINGです。
<Files ~ "^([\._]ht|README$|VERSION$|COPYING$)">
<IfModule mod_authz_host>
Require all denied
</IfModule>
<IfModule !mod_authz_host>
Order allow,deny
Deny from all
</IfModule>
</Files>
# Don't allow access to git directories
# .gitディレクトリへのアクセスを禁止します。
<IfModule alias_module>
RedirectMatch 404 /\.git
</IfModule>
# Uncomment these rules if you want to have nice URLs using
# $conf['userewrite'] = 1 - not needed for rewrite mode 2
# mod_rewriteを有効にします。
RewriteEngine on
# _media、_detail、_exportにアクセスした場合はそれぞれ該当するURLにパラメータを付与してアクセスします。
RewriteRule ^_media/(.*) lib/exe/fetch.php?media=$1 [QSA,L]
RewriteRule ^_detail/(.*) lib/exe/detail.php?media=$1 [QSA,L]
RewriteRule ^_export/([^/]+)/(.*) doku.php?do=export_$1&id=$2 [QSA,L]
# http://domain/でアクセスした場合にhttp://domain/doku.phpを表示します。
RewriteRule ^$ doku.php [L]
# 指定されたファイルとディレクトリが存在しない場合は該当パラメータのページを表示します。
# つまり「この文書は存在しません」ページが表示されます。
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) doku.php?id=$1 [QSA,L]
# http://domain/index.phpでアクセスした場合にhttp://domain/doku.phpを表示します。
RewriteRule ^index.php$ doku.php
# Not all installations will require the following line. If you do,
# change "/dokuwiki" to the path to your dokuwiki directory relative
# to your document root.
RewriteBase /
## If you enable DokuWikis XML-RPC interface, you should consider to
## restrict access to it over HTTPS only! Uncomment the following two
## rules if your server setup allows HTTPS.
#RewriteCond %{HTTPS} !=on
#RewriteRule ^lib/exe/xmlrpc.php$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R=301]
## Enable this to restrict editing to logged in users only
## You should disable Indexes and MultiViews either here or in the
## global config. Symlinks maybe needed for URL rewriting.
#Options -Indexes -MultiViews +FollowSymLinks
## make sure nobody gets the htaccess, README, COPYING or VERSION files
<Files ~ "^([\._]ht|README$|VERSION$|COPYING$)">
<IfModule mod_authz_host>
Require all denied
</IfModule>
<IfModule !mod_authz_host>
Order allow,deny
Deny from all
</IfModule>
</Files>
## Don't allow access to git directories
<IfModule alias_module>
RedirectMatch 404 /\.git
</IfModule>
## Uncomment these rules if you want to have nice URLs using
## $conf['userewrite'] = 1 - not needed for rewrite mode 2
#RewriteEngine on
#
#RewriteRule ^_media/(.*) lib/exe/fetch.php?media=$1 [QSA,L]
#RewriteRule ^_detail/(.*) lib/exe/detail.php?media=$1 [QSA,L]
#RewriteRule ^_export/([^/]+)/(.*) doku.php?do=export_$1&id=$2 [QSA,L]
#RewriteRule ^$ doku.php [L]
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule (.*) doku.php?id=$1 [QSA,L]
#RewriteRule ^index.php$ doku.php
#
## Not all installations will require the following line. If you do,
## change "/dokuwiki" to the path to your dokuwiki directory relative
## to your document root.
#RewriteBase /dokuwiki
#
## If you enable DokuWikis XML-RPC interface, you should consider to
## restrict access to it over HTTPS only! Uncomment the following two
## rules if your server setup allows HTTPS.
#RewriteCond %{HTTPS} !=on
#RewriteRule ^lib/exe/xmlrpc.php$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R=301]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment