Re: ページの入れ替え
2012年5月13日 at 18:00
hissyさん、回答ありがとうございます!
なるほど、別ドメインで作業をしたほうがいいんですね。
今、別ドメインで、2つのコンクリートを使っている状態(1つは本番、1つは作成用)なので、hissyさんが言っている環境は、整っています。
助言どおり、作成用コンクリートに新トップページを作成し、それを.htaccessで、現トップページと切り替えしたいと思います。
そこで、.htaccessの書き方なのですが、
現状、
# -- concrete5 urls start --
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /concrete5/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
# -- concrete5 urls end --
のように、phpを隠すような設定がされているだけです。
どのように、変えたらよいでしょうか。
Your post has been saved and will be published after approval by the forum moderator.
takuro hishikawa
Re: ページの入れ替え
何をしたいのかよく分かってないのですが…