JQuery.post
ファイルのメソッドを介してデータを渡しています。Joomla 2.5のサーバーで「検索エンジンフレンドリーURL」と「URL書き換えを使用」がオフの場合は正常に機能しますが、両方の設定がオンの場合、のURLがJQuery.post
変更され、正しく機能しません。
jQuery.post('index.php?option=com_requests&controller=dashboard&task=messagesendtocook&format=raw&tmpl=component', {
replymessage:replymessage,fromid:fromido,msdid:msdido,refid:refido}, function(data) {
alert(data);
setTimeout( 'reload_parent_window();', 2000 );
window.parent.SqueezeBox.close();
});
SEO
設定がOFFのときのMy URLパラメータ
index.php?option=com_requests&controller=dashboard&task=messagesendtocook
正常に実行されます。
SEO
設定がONのときのMy URLパラメータ
index.php/component/requests/index.php?option=com_requests&controller=dashboard&task=messagesendtocook
実行されていません。