MEMO

4月 27 2011

.htaccess  リダイレクト


トップページをindex.html  から→ index.phpに変更したい場合

.htaccess でindex.htmlにアクセス
があった場合、index.phpに自動的に遷移するように設定できる。

FTPのイメージ

FTPのイメージ

書き方
RedirectPermanent 遷移元PATH 遷移先URL
ここで注意!!!!

遷移元PATH = http://ドメイン名 を省略したパス 
遷移先URL = 遷移先URL

例えば、rootにindex.html とindex.php がある場合

遷移元PATH = /index.html
遷移先URL = http://ドメイン名/index.php

RedirectPermanent /index.html http://ドメイン名/index.php
やってしまった失敗

○遷移元PATH = /index.html 
×遷移元PATH = virtual/192.168.x.x/home/index.html

遷移元PATHは絶対パスではありません!!!!!

参考サイト

Trackback URL

Leave a Reply