我遇到问题了。我正在使用 Ubuntu,我的所有文件都位于/var/www
. 它包含以下文件夹:
fatfree:contains the fat free framwork
F3Apps: contains index.php, .htaccess(contents shown below)
index.php 的内容是
<?php
require '../fatfree/lib/base.php';
F3::route('GET /',function()
{
echo "root entered";
});
F3::route('GET /about',function()
{
echo "about entered";
});
F3::run();
?>
当我将 URL 设置为http://127.0.0.1/F3Apps/时,没关系,即它正在回显
root entered
但是,当我将 URL 设置为http://127.0.0.1/F3Apps/about时,我得到以下信息:
.htaccess 内容如下所示(.htaccess 在文件 F3Apps 中):
# Enable rewrite engine and route requests to framework
RewriteEngine On
RewriteBase /F3Apps
RewriteCond %{REQUEST_FILENAME} !-l
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php [L,QSA]
# Disable ETags
<IfModule mod_header.c>
Header Unset ETag
FileETag none
</IfModule>
# Default expires header if none specified (stay in browser cache for 7 days)
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault A604800
</IfModule>
DocumentRoot "/var/www/html"
<Directory "/var/www/html">
Options -Indexes FollowSymLinks Includes
AllowOverride All
Order allow,deny
Allow from All
</Directory>