url重写php内部服务器错误

时间:2013-07-25 05:49:31

标签: php .htaccess url-rewriting

我有一个从localhost运行的项目我使用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.

所以我该怎么办呢。 提前致谢

阿米特

1 个答案:

答案 0 :(得分:0)

您可以使用DirectoryIndex

执行此操作
RewriteEngine On
RewriteBase /re/

DirectoryIndex refer.php

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