最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Redirect a list of URLs to another URL, using functions.php

programmeradmin3浏览0评论

What I wish to do

I have a number of Wordpress URLs I need to redirect, along with a 301 permanent redirect header being sent to browser.

The URLs to redirect are:

/?location=victoria

/?location=new-south-wales

/?location=queensland

/?location=south-australia

/?location=tasmania

/?location=northern-territory

Where to redirect to

I want to redirect them to the home page: /

I am not sure whether it's best to test for all six of those location= strings, or to simply test for the one location= string that is not to redirect.

The one that is not to redirect is ?location=western-australia. E.g.,

/?location=western-australia

Additional considerations

Note that there are other /search-result/ URLs that have different variables in the query strings, such as ?weather=... or ?water=.... For example, /?location=victoria&weather=part-shade&water=&pasture=

AS seen in that example, it's also possible multiple variables will be in the query string, such as ?location=tasmania&weather=&water=moderate&pasture=.

So I need to test for the presence of the above listed locations= irrespective of whether or not it has other variables after it. The location= variable will always be the first in the query string.

I am thinking it may be as simple as testing for /search-result/ AND victoria; tasmania; northern-territory; etc. in the URL.

A different approach?

Would it make sense to do this using an .htaccess redirect, as opposed to having Wordpress do it? I am not sure of the advantages or disadvantages of each approach. After posting this, and also seeing Admiral Noisy Bottom's comment, I've realised doing this with .htaccess rewrite or redirect rules in going to be the most efficient approach. In the interest of upping my PHP and Wordpress specific PHP skills, I would still like to see how this could be achieved on that level. So I am leaving the question here. I've posted a modified version of this question on Stackoverflow asking how to do this with Redirect rules in htaccess.

发布评论

评论列表(0)

  1. 暂无评论