Anchorをインストールしてみた
Written by dsk on 10th May, 2014.
日記用に設置。これまではMediawikiの方で簡単な日記を書いていたが、これからはここで書こうと思う。
以前からWordpressほど高機能でないCMSで、なおかつMarkdown形式で書けるものを探していたんだが、巡りあわせが悪かったのか、検索結果からAnchorを知る事はなかった。
しかし、久しぶりに検索をかけてみたらAnchorがヒットしてきて、試しにインストールしてみたら意外とすんなり入った。ただ、生成された.htaccessファイルではエラーがでた。
Options -indexes
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /diary
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 index.php
</IfModule>
以下のようにしてみた。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /diary/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /diary/index.php [L]
</IfModule>
というか、いろいろと分からない事が多いんだけど、日本人があまり使っていないのか、Anchorに関する記事があまりなさそう。公式サイトの英語のドキュメントを読むのも面倒だけど、phpファイルがシンプルなので、いじりやすそうだ。