gpt4 book ai didi

php - 抱歉,无法找到您要查找的页面。硅胶错误

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:41:25 27 4
gpt4 key购买 nike

我的.htaccess:

<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteBase /silex/web
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
</IfModule>

索引.php:

<?php
ini_set('display_errors', 1);
require_once __DIR__.'../vendor/autoload.php';

$app = new Silex\Application();

$app->get('/hello/{name}', function ($name) use ($app) {
return 'Hello '.$app->escape($name);
});

$app->run();

访问 localhost/silex/hello/world 时出现此错误:

“抱歉,找不到您要查找的页面。”

为什么?

最佳答案

在你的 .htaccess 中试试这个

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /silex/web
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?$1 [QSA,L]
</IfModule>

文件的位置应该是:

/silex/.htaccess
/silex/web/index.php

关于php - 抱歉,无法找到您要查找的页面。硅胶错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22698323/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com