我想以表格的形式重定向网址
http://a_domain_name.com/2013/08/link_name/feed
到http://a_domain_name.com/link_name/feed
。我是一名WordPress初学者,发现很难做到这一点。这是最好的方法吗?
我尝试使用http://domain_name.com/%year%/%monthnum%/%postname%/feed到http://domain_name.com/%postname%/feed的安全重定向插件,但它无法正常工作
答案 0 :(得分:2)
正确的方法
登录wordpress管理面板,然后转到设置>永久链接页面。
从此处,选择倒数第二个选项,即:
http://domain.com/blogname/blog/sample-post/
或者,您可以创建重定向文件。这涉及到一些黑客攻击wordpress。如果你对wordpress& and不满意,我不推荐这个。 PHP。要做到这一点,首先:
在管理面板中打开设置>固定链接页面:
选择列表中的最后一个选项(自定义)并输入如下内容:
/redirect.php?p=%post_id%&a=%author%&c=%category%
您还需要将以下两个可选表单更改为:
类别基础
/redirect.php?c=
标记基础
/redirect.php?t=
现在,让我们创建一个重定向php文件。将其放在/ yourblogname / blog /
中<?php
$total=0;
$string = 'http://www.yourdomain.com/';
$fetch = '';
if (isset($_GET['p'])&&!is_null($_GET['p']))
{
$p = $_GET['p'];
if ($total ==0) {
$string.='?p='.$p;
} else {
$string.='&p='.$p;
}
$total++;
}
if (isset($_GET['t'])&&!is_null($_GET['t']))
{
$t = str_replace('/','',$_GET['t']);
if ($total ==0) {
$string.='?tag='.$t;
} else {
$string.='&tag='.$t;
}
$total++;
}
if (isset($_GET['a'])&&!is_null($_GET['a']))
{
$a = $_GET['a'];
if ($total ==0) {
$string.='?a='.$a;
} else {
$string.='&a='.$a;
}
$total++;
}
if (isset($_GET['s'])&&!is_null($_GET['s']))
{
$s = $_GET['s'];
if ($total ==0) {
$string.='?s='.$s;
} else {
$string.='&s='.$s;
}
$total++;
}
if (isset($_GET['c'])&&!is_null($_GET['c']))
{
$c = str_replace('/','',$_GET['c']);
if ($total ==0) {
$string.='?category_name='.$c;
} else {
$string.='&category_name='.$c;
}
$total++;
}
echo '<head><meta http-equiv="Refresh" content="0; URL='.$string.'">';
?>
<style>
html {
background:black;
color:white;
}
</style>
</head>
<body>
<div id=cont>
<p align=center><div style='font-size:72px;text-align:center;' ><?php echo "redirecting..."; ?></p></div>
</div>
</body>
我们还没有完成。我们需要调整我们重定向到现在的页面...(index.php)
if (!isset($_GET['p'])) {
if (!isset($_GET['category_name']) && !isset($_GET['tag']) && !isset($_GET['s']) && !isset($_GET['search']) ) {
include('newhome.php'); //frontpage with no special redirect
} else {
include('listabbrposts.php'); //a list of abbreviated posts for browsing
}
} else {
include('entry.php'); // a page with a single article
}
对于一个工作示例,您可以查看我使用此技术的页面:http://www.artfuladvection.com点击左侧的主题或标签以查看重定向。