我正在开发一个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。
请帮帮我。