当我将文件上传到我的服务器(bluehost)时,我的网站在我的本地环境(MAMP)上运行良好,但我遇到了以下问题:
我有一个 php 获取变量(即 /xxx.php?p=bob)的链接,它调用一个打开弹出窗口的 javascript 函数 (popitup)。
链接结构如下:
<?php echo "<a href='media_player.php?p=".$listen_now."' onclick=\"return popitup('media_player.php?p=".$listen_now."')\">"
popitup函数定义如下:
function popitup(url) {
newwindow=window.open(url,'name','height=700,width=375');
if (window.focus) {newwindow.focus()}
return false;
}
当弹出窗口打开时,页面内容不加载,我收到以下消息:
[an error occurred while processing this directive]
主错误日志显示以下警告:
[Mon May 28 08:23:40 2012] [warn] RewriteCond: NoCase option for non-regex pattern '-f' is not supported and will be ignored.
我的 public_html 文件夹中的 .htaccess 文件不包含任何重定向或重写。
非常感谢有关我如何解决此问题的任何线索。