-1

我想为没有对语言有很强的了解而道歉,但我有这样的问题。我通过 mode_rewrite 进行了重定向,现在 url 是“localhost/url/url2/” apache,它重定向到“localhost/url/url2/index.php” 如何从 url “index.php”中删除?

4

2 回答 2

0

如果你只想删除 index.php 然后把这样的代码放在 htaccess 中,

RewriteRule ^/$ http://localhost/url/url2/index.php

将此 htaccess 文件放在 index.php 所在的位置

于 2013-08-06T08:16:37.660 回答
0

您可以使用此规则:

RewriteRule ^url/url2/$ /url/url2/index.php [L]

浏览器不会在 URL 输入中显示 index.php。

于 2013-08-06T09:40:18.243 回答