0

所以我不明白从 htaccess 到 hiawatha 的转换是如何工作的。你能推荐一个好的网站或一本好书来进入这个话题吗?

我的问题是以下转换:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^((?s).*)$ index.php?_url=/$1 [QSA,L]

htaccess

RequestURI exists Return
Match ^((?s).*)$ Rewrite /index.php?_url=/$1

海华沙

但是匹配重写语句是错误的......

4

1 回答 1

0

hiawatha URL TOOLKIT 的解决方案是:

RequestURI exists Return
Match ^/(.*) Rewrite /index.php?_url=/$1

这会将所有内容重定向到 index.php。例如 http://host/get/123重写为 http://host/index.php?_url=/get/123

于 2015-10-15T13:31:16.133 回答