javascriptを使用して新しいウィンドウを開くことに問題があります。ChromeとFirefoxでは、これはうまく機能しますが、IEは間違ったURLを提供します。
リンクは次のようなページにあります:www.CORRECTURL.com/SEOKEYWORD/SONGID/SONGNAME.html
リンク:
<a href="javascript:void(0)" onclick="window.open('extraListen.php?visa=<?php echo($songID); ?>','welcome','toolbars=1, scrollbars=1, location=1, statusbars=1, menubars=1, resizable=1, width=748, height=660, left = 300, top = 100')">Listen</a>
chrome / firefoxではこれが開きます:http ://www.CORRECTURL.com/extraListen.php?visa = 19 IEではこれが開きます:http ://www.CORRECTURL.com/SEOKEYWORD/SONGID/extraListen.php?visa = 19
「seokeyword」と「songid」をリンクに追加すると、新しいページが見つかりませんが、IEがこれをURLとChromeに追加する方法がわかりませんが、Firefoxは追加しません!??
ところで、私は次のhtaccessを持っています:
Options +FollowSymLinks
RewriteEngine on
RewriteRule midsommarvisor/(.*)/(.*)\.html$ index.php?visa=$1&midsommarvisa=$2 [L]
RewriteRule sitemap\.xml sitemap.php [L]
RewriteRule rss\.xml rss.php [L]
RewriteRule (.*)/(.*)\.html$ index.php?fel=$1&page=$2 [L]
RewriteRule (.*)\.html$ index.php?page=$1
どこから始めたらいいのかわからない...