iEhohs DokuWiki

プログラミングや設定方法など、個人的なナレッジを残しておくWikiです。

ユーザ用ツール

サイト用ツール


dokuwiki:short-url

URLを短くする

サイト設定

設定項目
スタートページ名index.html
URLの置き換え.htaccess
URL上の名前空間の区切りにスラッシュを使用True

.htaccess

DokuWikiのインストールファイルに「.htaccess.dist」が入っているため、一旦ダウンロードしてファイル名を「.htaccess」にした上で内容を下記のように変更します。

RewriteBaseはインストールしているディレクトリに合わせて値を変更(ルートディレクトリの場合は「/」でOK)、他はコメントアウトを外すのみです。

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

RewriteBase /dokuwiki
スポンサーリンク
dokuwiki/short-url.txt · 最終更新: 2024/07/26 21:30 by shimehitsu14