“So aktivieren Sie hübsche URL in yii2” Code-Antworten

So aktivieren Sie hübsche URL in yii2

'urlManager' => [
    'class' => 'yii\web\UrlManager',
    // Disable index.php
    'showScriptName' => false,
    // Disable r= routes
    'enablePrettyUrl' => true,
    'rules' => array(
            '<controller:\w+>/<id:\d+>' => '<controller>/view',
            '<controller:\w+>/<action:\w+>/<id:\d+>' => '<controller>/<action>',
            '<controller:\w+>/<action:\w+>' => '<controller>/<action>',
    ),
],
Splendid Shrew

So aktivieren Sie hübsche URL in yii2

RewriteEngine on
# If a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Otherwise forward it to index.php
RewriteRule . index.php
Splendid Shrew

Ähnliche Antworten wie “So aktivieren Sie hübsche URL in yii2”

Fragen ähnlich wie “So aktivieren Sie hübsche URL in yii2”

Weitere verwandte Antworten zu “So aktivieren Sie hübsche URL in yii2” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen