我的mvc项目中有500个内部服务器错误

时间:2013-12-06 11:06:27

标签: php .htaccess url-rewriting

我正在开发一个mvc项目但是当我运行我的index.php文件时,它给了我内部服务器错误。

我的代码如下:

的.htaccess

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l

RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]

的index.php

<?php
echo $_GET['url'];
?>

我正在使用wampserver php 5.4.16。

请帮帮我。

0 个答案:

没有答案