1

无论如何都要重写完整的 URL,即使使用 mod-rewrite 通过 .htdocs 使用参数?

例如,如果我输入 www.example.org,它必须将我转发到 www.example.org/index.php/frontend。

有人有想法吗?

先感谢您。

4

1 回答 1

1

您可以检查主机名,如果匹配www.example.org,则重定向所有内容(包括路径和任何参数,如下所示:

RewriteCond %{HTTP_HOST} ^www.example.org$
RewriteRule ^/(.*)$ http://example.org/index.php/frontend/$1 [L,R=301]
于 2013-01-24T16:06:17.377 回答