シンプルなJoomlaコントローラーを持っていますが、何もリダイレクトできません。
ドキュメントによると:
class MyController extends MyBaseController {
function import() {
$link = JRoute::_('index.php?option=com_foo&ctrl=bar');
$this->setRedirect($link);
}
}
//The url contains & html escaped character instead of "&"
これは機能するはずですが、不正な形式のURLを取得します。ここに欠けているものはありますか?Joomlaがすべての「&」文字を「」に変換するのはなぜ&
ですか?setRedirectをどのように使用すると思いますか?
ありがとうございました