A
A
abrakadana2016-06-02 13:51:30
Yii
abrakadana, 2016-06-02 13:51:30

How to add a slash at the end in Yii2?

I'm learning Yii2 and I want to add to the end of each page /
How can I do this via htaccess or urlManager?

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php

'urlManager' => [
            'enablePrettyUrl' 	=> true,
            'showScriptName' => false,
            'rules' => [
        
            ],
        ],

Answer the question

In order to leave comments, you need to log in

2 answer(s)
B
bashkarev, 2016-06-02
@bashkarev

URL Suffixes

M
melnikov_m, 2016-06-02
@melnikov_m

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} /+[^\.]+$
RewriteRule ^(.*[^/])$ $1/ [L,R=301]

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question