我正在尝试使用我下载的Macaw路由器,并将文件index.php
放在与index.php
相同的文件夹中。在ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
require_once 'Macaw.php';
use \NoahBuscher\Macaw\Macaw;
Macaw::get('/hello', function() {
echo 'hello';
});
Macaw::get('/', function() {
echo 'hello';
});
Macaw::dispatch();
我有这段代码:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
我在同一文件夹中创建了一个.htaccess文件,并将此代码放入其中:
manage.py runserver
当我在浏览器中打开网站时,它会在主路径('/')中显示“hello”但是当我转到 / hello 时它显示404 Not发现错误。
- 我正在使用ubuntu存储库中的apache2