必要であるか分かりませんが、一応掲載しておきます。
①$wgArticlePath周辺を以下のように変更します。
$wgArticlePath = "/wiki/$1";
$wgUsePathInfo = true;
②htmlフォルダに「.htaccess」を置き、以下のように記述します。
RewriteEngine on
RewriteRule ^/?wiki(/.*)?$ %{DOCUMENT_ROOT}/index.php?title=$1 [L]
RewriteRule ^/*$ %{DOCUMENT_ROOT}/index.php?title=$1 [L]
これで終わりです。httpを強制的にhttpsにリダイレクトさせる方法も記載しておきます。
①「.htaccess」に以下のようなコードを追加。
RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
終わりです。
URLの「/index.php?title=$1」を「/wiki/」に変更する手順
投稿日時
2023/10/31 0:09
msg# 1
depth: 0