1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Craft CMS の管理画面 URL を変更する

Posted at

Craft CMS では、管理画面へのリクエストかどうかを判別するトリガーとなるテキストが、デフォルトで admin と決まっている。

これを変更するには config/general.phpcpTrigger を追記する。

config/general.php
<?php

return [
    // Global settings
    '*' => [
        // 管理画面のトリガーワード
        'cpTrigger' => 'fooBar',
    ],
];

この例では、管理画面の URL が下記となる。
https://localhost/fooBar

参考

General Config Settings > cpTrigger
https://docs.craftcms.com/v3/config/config-settings.html#cptrigger

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?