今日からブログを開始することにしました。
どれぐらいの頻度で更新出きるかは不明ですが、ほどほどにがんばってみます。
とりあえず、気になるのは、記事にコメントした場合に表示される、無意味な<div class="reply"></div>のタグです・・・。
コメントへの返答をするためのリンクが表示される箇所かなと思うのですが、空のタグだけが表示されているようです。
放…
.htaccessに以下を記述してルートに設置
# Various rewrite rules.
<IfModule mod_rewrite.c>
RewriteEngine on
# Modify the RewriteBase if you are using Drupal in a subdirectory and
# the rewrite rules are not working properly.
RewriteBase /
# Rewrite URLs of the form 'index.php?q=x'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>
参考:http://eru-net.jp/web/?itemid=58
この投稿へのコメント
コメントはまだありません。