我设置了一个链接缩短系统(Yourls),这样你就可以转到?url=[xyz]
的短网址(其中[xyz]
是你要缩短的网址)添加到最后会缩短URL。我想添加一个单独页面的链接(在我的MediaWiki维基上),缩短了它所在页面的永久链接。我需要将按钮添加到我的模板中,以便将当前页面的URL添加到链接中。 MediaWiki是一个PHP平台,所以这是首选(但JavaScript也很好)。我怎么能这样做?
(如果这令人困惑,我道歉)
更新:我对PHP很糟糕,很抱歉。 我只是把
<?php echo'<a href="http://sumov.co.cc/?url=".$_SERVER["REQUEST_URI"]; class="buttonlink ui-state-default ui-corner-all"><span class="ui-icon ui-icon-newwin"></span>Support →</a>'; ?>
并且刚刚进入http://sumov.co.cc/?url=
(sumov.co.cc是我的简短链接)。
答案 0 :(得分:0)
"http://www.yoursitesdomainname.com".$_SERVER['REQUEST_URI'];
上一个将是当前页面的URL,请尽可能使用它。
答案 1 :(得分:0)
正如Babiker所说,将返回URI。我建议过滤或删除网址。 WordPress有一个名为esc_url的函数。
来自WordPress核心wp-includes / formatting.php第2235-2281行
/**
* Checks and cleans a URL.
*
* A number of characters are removed from the URL. If the URL is for displaying
* (the default behaviour) amperstands are also replaced. The 'clean_url' filter
* is applied to the returned cleaned URL.
*
* @since 2.8.0
* @uses wp_kses_bad_protocol() To only permit protocols in the URL set
* via $protocols or the common ones set in the function.
*
* @param string $url The URL to be cleaned.
* @param array $protocols Optional. An array of acceptable protocols.
* Defaults to 'http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet' if not set.
* @param string $_context Private. Use esc_url_raw() for database usage.
* @return string The cleaned $url after the 'clean_url' filter is applied.
*/
function esc_url( $url, $protocols = null, $_context = 'display' ) {
$original_url = $url;
if ( '' == $url )
return $url;
$url = preg_replace('|[^a-z0-9-~+_.?#=!&;,/:%@$\|*\'()\\x80-\\xff]|i', '', $url);
$strip = array('%0d', '%0a', '%0D', '%0A');
$url = _deep_replace($strip, $url);
$url = str_replace(';//', '://', $url);
/* If the URL doesn't appear to contain a scheme, we
* presume it needs http:// appended (unless a relative
* link starting with / or a php file).
*/
if ( strpos($url, ':') === false &&
substr( $url, 0, 1 ) != '/' && substr( $url, 0, 1 ) != '#' && !preg_match('/^[a-z0-9-]+?\.php/i', $url) )
$url = 'http://' . $url;
// Replace ampersands and single quotes only when displaying.
if ( 'display' == $_context ) {
$url = preg_replace('/&([^#])(?![a-z]{2,8};)/', '&$1', $url);
$url = str_replace( "'", ''', $url );
}
if ( !is_array($protocols) )
$protocols = array ('http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet', 'mms', 'rtsp', 'svn');
if ( wp_kses_bad_protocol( $url, $protocols ) != $url )
return '';
return apply_filters('clean_url', $url, $original_url, $_context);
}
然后你会运行<?php esc_url(http://www.example.com".$_SERVER['REQUEST_URI'];) ?>
答案 2 :(得分:0)
如果我是你,我会像往常一样缩短你自己的网址(http://tecn.me)我学到了很多,而且可能性是无穷无尽的
答案 3 :(得分:0)
获取网址:
$url = "http://" . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
我建议使用urlencode( $url )
和urldecode( $url )
来包装和打开它以便安全转移。