我遇到了.htaccess的这段代码:
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|images|css|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]
index.php
这应该从链接中删除。
我已经在视图目录下创建了文件,但是它不起作用。难道我做错了什么?