htaccessの設定
ウェブプログラムを一つのディレクトリにまとめる
RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} www\.tpot\.tk RewriteCond %{REQUEST_URI} !^joomla/.* RewriteCond %{REQUEST_URI} !^(/img) [NC] RewriteCond %{REQUEST_URI} !^(/icon) [NC] RewriteCond %{REQUEST_URI} !^(/log) [NC] RewriteCond %{REQUEST_URI} !^(/tool) [NC] RewriteCond %{REQUEST_URI} !^(/error) [NC] RewriteRule (.*) joomla/$1
http://www.tpot.tk/でアクセスしてきたものをjoomlaというディレクトリに入っているウェブプログラムで動作させる。閲覧者は、joomlaのディレクトリで動作していることはわからない。ただし、ルートに実在するimg、iconなどのディレクトリはそのままアクセスできるようにしてある。