Urlの末尾に / (スラッシュ)を付けたい

いつもお世話になっております。

現在ConcreteCMS9.2.2を利用しております。

先程気が付いたのですが、私の作っているconcreteCMSのサイトには、
末尾に / (スラッシュ)が付いていません。

https://abc.com/dir

URLの末尾に/ (スラッシュ)を付けて下記のようにしたいのですが、
どのようにしたらいいのでしょうか?

https://abc.com/dir/

In your /application/config/generated_overrides/concrete.php file find the seo section as below and add the trailing slash line.

'seo' => [
        'redirect_to_canonical_url' => false,
        'url_rewriting' => true,
		'trailing_slash' => true,
    ],

To explore other available options see the seo section of /concrete/config/concrete.php

2 Likes

It was very helpful. Thank you very much.

1 Like