$ _get和url参数

时间:2014-05-12 06:38:18

标签: url get

我有一个mvc项目,当我在url localhost/index中尝试这样输入时,$ _GET中的url参数表示当我var_dump时它是空的但是当我键入"主"它识别它并且var_dump将main作为字符串返回。

我的.htaccess文件就像:

RewriteEngine On

#Options +FollowSymLinks +MultiViews -Indexes // not sure if i need any of these, seems no affect, tried to enable and disable.

RewriteBase /project_website/

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

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

当我尝试访问Index类时,它会生我的气。如果我的主页是Main,Home,plaplapla无论它是什么工作。但不是索引或索引。为什么单词索引不行?

0 个答案:

没有答案