所以我在youtube上关注了MVC教程,一开始一切顺利,但是当我开始配置.htaccess
文件时,我似乎无法工作!我觉得我已经疯狂地解决了这个问题我一直在研究,他们提供的每一个解决方案对我都不起作用,
此链接有效
localhost/myApp/public/?url=home
然后我就这样说了
localhost/myApp/public/home
它导致找不到错误,我尝试了很多建议的解决方案,但我仍然收到此错误。
在我做出一些更改之前,这是我的.htaccess
;
Options -Multiviews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?url=?$1 [QSA,L]
我试过这样的事情
Options -MultiViews
DirectoryIndex index.php
RewriteEngine On
RewriteBase /var/www/html/myApp/public/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|robots\.txt)
RewriteRule ^(.*)$ index\.php?/$1 [L]
我现在在墙上撞了几个小时,现在我希望有人可以开导我,谢谢。