http://localhost:8888/
リダイレクトするための書き換えを達成する方法に関する情報が見つからないようですhttp://loclahost:8888/home/
私は試した:
RedirectMatch ^/$ http://localhost:8888/website/home/
しかし、それは私に無限ループを与えます。
次のルールが既に適用されています。
RewriteCond %{REQUEST_URI} home/
RewriteRule home/ http://localhost:8888/website/index.php [L]
RewriteCond %{REQUEST_URI} ([a-z]*)/
RewriteRule ([a-z]*)/ http://localhost:8888/website/$1.php
この情報はhttp://httpd.apache.org/docs/2.4/rewrite/remapping.html#moveddocrootから入手しました。