0

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

4

1 回答 1

0

我设法让它工作使用:

RedirectMatch ^/website/$ http://localhost:8888/website/home/
于 2013-04-11T09:51:50.113 回答