Actions

Translations

Translations:Optional settings/78/es

From LimeSurvey Manual

Revision as of 19:37, 22 August 2016 by Elifeleth (talk | contribs) (Created page with "==URL settings== Para tener el mismo comportamiento como la anitgua función 'Fancy URL', puede actualizar el administrador de ULR's <syntaxhighlight lang="php" enclose="pre">...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

URL settings

Para tener el mismo comportamiento como la anitgua función 'Fancy URL', puede actualizar el administrador de ULR's

       // Usar URL corta
		'urlManager' => array(
			'urlFormat' => 'path',
			'showScriptName' => false,
		),

Adding .html after the survey id

       // Usar URL corta
		'urlManager' => array(
			'urlFormat' => 'path',
			'rules' => array (
			    '<sid:\d+>' => array('survey/index','urlSuffix'=>'.html','matchValue'=>true),
			 ),
			'showScriptName' => false,
		),

Mas informacion en documentación Yii .