「FancyURL-2」導入手順
- 投稿日 : 2007-05-08, 20:53
- 最終更新日時 : 2011-05-15 18:07:18(履歴)
- タグ(Nucleus)
- カテゴリ(Nucleus)
- 記し人(luvsic)[PDF]
- 閲覧数(1352)
Nucleus v3.3 FancyURL-2 - wa - Nucleus や ウェブネタなど
XREAでサクッと導入できた、3~4分くらいだろうか。
・・・なんて簡単なんだ。
導入手順
- /extra/fancyurls2/.htaccessの内容を既存.htaccessに追加
- index.phpを一箇所書き換え
- グローバル設定でURLモードをFancyに設定
- スキン「feeds/rss20」、テンプレート「feeds/rss20」のアイテムへのパスを変更
- テンプレート「feeds/atom/entries」のアイテムへのパスを変更
記録用コード
.htaccess(※UTF-8用コード含む)
php_flag register_globals Off
php_value default_charset UTF-8
php_value mbstring.language Japanese
php_value mbstring.internal_encoding UTF-8
php_flag mbstring.encoding_translation On
php_value mbstring.http_input auto
php_value mbstring.http_output pass
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?virtualpath=$1 [L,QSA]
</IfModule>
index.php
<?php
$CONF = array();
$CONF['Self'] = 'https://luvsic.net';
include('./config.php');
selector();
?>
さくらレンタルサーバの場合 .htaccess
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?virtualpath=$1 [L,QSA]
</IfModule>
No comments yet