iEhohs DokuWiki

主にプログラミングなど情シス業務の備忘録です

ユーザ用ツール

サイト用ツール


web: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
スポンサーリンク
web/dokuwiki/short-url.txt · 最終更新: 2024/02/17 23:09 by Shohei Okuda