我将一个CakePhp项目放在var / www / html / manage /
中管理文件夹包含(在ls上)
CONTRIBUTING.md app build.xml email index.php plugins
README.md build.properties composer.json email.zip lib vendors
时
它给了我错误,这很好
!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>
CakePHP: the rapid development php framework:
Errors </title>
<link href="/manage/favicon.ico" type="image/x-icon" rel="icon" />
<link href="/manage/favicon.ico" type="image/x-icon" rel="shortcut icon" />
<link rel="stylesheet" type="text/css" href="/manage/css/cake.generic.css" />
</head>
<body>
<div id="container">
<div id="header">
<h1>
<a href="http://cakephp.org">CakePHP: the rapid development php framework</a>
</h1>
</div>
<div id="content">
<h2>Missing Controller</h2>
<p class="error">
<strong>Error: </strong>
<em>Controller</em> could not be found.
</p>
<p class="error">
<strong>Error: </strong>
Create the class
<em>Controller</em> below in file: app/Controller/Controller.php
</p>
<pre>
<?php
class Controller extends AppController {
我在app / Controller /
中放置了一个控制器然而,当我尝试做
时http://domain/manage/users/registerAccount
它给我404找不到错误。
我缺少什么