差分
このページの2つのバージョン間の差分を表示します。
| 次のリビジョン | 前のリビジョン | ||
| web:htaccess [2008/01/05] – 作成 administrator | web:htaccess [不明な日付] (現在) – 外部編集 (不明な日付) 127.0.0.1 | ||
|---|---|---|---|
| 行 1: | 行 1: | ||
| + | ====== htaccessの設定 ====== | ||
| + | ===== ウェブプログラムを一つのディレクトリにまとめる ===== | ||
| + | |||
| + | < | ||
| + | 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/ | ||
| + | |||
| + | %%http:// | ||