我的电子邮箱正在填写错误:错误:无法找到Robots.txtController。和错误:无法找到CssController。我计划能够配置蛋糕,以免在像favicon.ico,缺少图像等事情上丢失控制器错误。
htaccess文件是:
<IfModule mod_rewrite.c>
RewriteEngine On
Options +FollowSymlinks
RewriteBase /
RewriteCond %{QUERY_STRING} ^module(.*)$
RewriteRule ^(.*)$ index.php?url=system_fields/route/$1 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
如何防止出现这类错误?
答案 0 :(得分:0)
修复错误比防止错误更好。例如,如果您看到Robots.txtController错误,则应将Robots.txt添加到您的webroot。这不仅可以防止错误,还可以在请求时提供Robots.txt文件。您会看到其他错误也是如此。