Entradas

Mostrando entradas de agosto 15, 2018

Url amigables en yii2 (basic)

1. en el direcctorio web crear un archivo con el nombre .httpacess 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 2. en el archivo /config/web.php descomentar las siguientes lienas. 'urlManager' => [ 'enablePrettyUrl' => true, 'showScriptName' => true, 'rules' => [ ], ], ..... NOTA: si se esta usando ventanas modales, no aplica esta solución