0

我有一个从本地主机运行的项目我正在使用 wamp 本地服务器来运行我的项目。像 localhost/re re 是我的项目文件夹,如何使用 .htaccess 在 url 重写中写入,
我试过但它会引发错误

这是我的 .htaccess

RewriteEngine On    # Turn on the rewriting engine
RewriteRule    ^localhost/re/?$    refer.php    [NC,L]    # Handle requests for "re"

当我作为 localhost/re 运行时

错误是

Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.

那我该怎么做。提前致谢

阿米特

4

1 回答 1

0

您可以使用DirectoryIndex

RewriteEngine On
RewriteBase /re/

DirectoryIndex refer.php

现在你的默认文件是refer.php

于 2013-07-25T05:53:02.173 回答