0
スリム3はすべての自分のRESTリクエストを手動でルーティングしています。PHPBBでPHPスリムルーティング
マイpublic_html
.htaccess
ファイルは私が新しいスリムアプリ
$app = new \Slim\App($settings);
を作成し、手動で
$app->get('/contact', function(Request $request, Response $response) use ($user) {
// render contact.php
});
すべてのページリクエストを処理index.php
でこの
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.example.come/$1 [R=301,L]
<IfModule mod_rewrite.c>
RewriteEngine on
#RewriteBase/
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [QSA,L]
</IfModule>
のように見えますphpBB
フォルダをpublic_html/phpBB3
にアップロードしました。これは、独自の.htaccess
ファイルが付属しており、私はスリムに設定するか、www.example.com/phpbb3
に要求を聞かせて私のpublic_html
.htaccess
ファイルが既に公開/ .htaccessファイルとしてこれを許可しますphpBB3