我有一个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无论它是什么工作。但不是索引或索引。为什么单词索引不行?