我似乎找不到任何关于如何实现重写以重定向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