我需要从 url 获取链接。例如:
http://mysite.com/site/http://myfriendsite.com/news/index.php?title=خبر&category=اقتصادی
site.php获取链接http://myfriendsite.com/news/index.php?title=خبر&category=اقتصادی
并显示此网址。
site.php 代码:
<?php
if(isset($_GET['url_rss']))
{
echo $_GET['url_rss'];
}
else
{
echo '<h2>Error 404</h2>';
}
?>
我的 .htaccess
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^site/(.*) site.php?url=$1
但我看到http:/myfriendsite.com/news/index.php
而不是http://myfriendsite.com/news/index.php?title=خبر&category=اقتصادی