使用php脚本解析rss feed地址时出错

时间:2014-10-21 11:02:52

标签: php xml .htaccess rss

我正在努力让成员只能访问feed xml文件。我有重定向工作在.htaccess。当我重定向到checkAuth.php文件时,我得到上述错误。该错误由CastFeed生成(HTTP / 1.1 404未找到)。我删除了auth部分以使访问部分正确。我的php文件 -

<?php
/**
* This script is used to authenticate a user based solely on a name passed as 
* the first parameter. The authentication is done against a mySQL db.
* 
*/
$file = "SFAPremium_f.xml";
header('Location: ' . "http://dev.stridesforsuccess.com/SFAPremium_f.xml");
header('Content-type: content=text/xml');
header('Content-Disposition: filename="SFAPremium_f.xml"');
header('Content-length: ' . filesize($file));
readfile($file);
?>

感谢。

0 个答案:

没有答案