我已經開始學習不含脂肪框架,安裝它,當我寫路由在不含脂肪框架
require __DIR__.'/lib/base.php';
F3::set('DEBUG',3);
F3::set('UI','ui/');
F3::route('GET /',function() {echo "hello";});
F3::run();
的index.php中
它顯示在屏幕上打招呼,但之後當我添加這上面
F3::route('GET /about', function() {echo "hello";});
當我打開localhost/freefat-master/about時,屏幕上出現找不到頁面。以下是我已經嘗試改變重寫規則來/fatfree/index.php我的.htaccess文件
# RewriteBase/
RewriteCond %{REQUEST_URI} \.ini$
RewriteRule \.ini$ - [R=404]
RewriteCond %{REQUEST_FILENAME} !-l
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* /index.php [L,QSA]
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
的細節。請給我一些建議。我使用的是linux,mysql和apache。
實際上我有wriiten localhost/fatfree-master/about,但是這也不起作用 –
你對「你寫的東西」有什麼意思?您是否使用了您在.htaccess中編寫的網址? – sascha
您可以嘗試複製適用於您問題的網址嗎?如果第一條路線有效,第二條路線也應該。 – Carsten