CakePHP 1.3 で、URL www.example.com/about/ のコントローラーが見つからないというエラーが発生しました。
Error: AboutController could not be found.
Error: Create the class AboutController below in file: app/controllers/about_controller.php
<?php
class AboutController extends AppController {
var $name = 'About';
}
?>
また、/app/webroot/ から .htaccess を誤って削除するまでサイトが機能していたため、問題は .htaccess にあることもわかっています。以下は、現在 .htaccess として持っているものですが、そこには何かが欠けているに違いありません。どんな助けでも大歓迎です!
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
</IfModule>