• Hi

    For my blog https://www.delhi-fun-dos.com I want a list of all URLs for posts and pages. Is there a plugin that can achieve it.

    Basically the blog is using Gamepress Theme which adds /game-review/ to all the game review custom posts urls. Now I’m all set to switch to another theme and when I convert all my game review custom posts to normal posts I loose /game-review/ from the URLs.

    All URLS like

    https://delhi-fun-dos.com/game-review/xyz/

    will become

    https://delhi-fun-dos.com/xyz/

    I want a list so that after migrating to another theme I can use Redirect plugin and redirect existing URLs to New URLs.

    Thanks in advance

Viewing 4 replies - 1 through 4 (of 4 total)
  • This could be handled with a .htaccess RewriteRule. Try adding this to the top of your .htaccess file:

    RewriteEngine on
    RewriteRule    ^game-review/(.*)  $1  [PT]
    Thread Starter MediaGurus

    (@mediagurus)

    Hi vtxyzzy

    Thanks for your reply. But this may not solve the problem. Many of my blogs urls are listed in search engine and other sites. The URLs are already with /game-review/

    Those links will be broken once the new URLs are in place.

    Thats why I just need a list of all URLs so that I can use redirect plugin and redirect the old links to new ones.

    Also many of my posts (normal wordpress posts) Do NOT not have /game-review/ and many (custome game review post) Do have /game-review/.

    Thanks

    Thanks for your reply. But this may not solve the problem. Many of my blogs urls are listed in search engine and other sites. The URLs are already with /game-review/

    Those links will be broken once the new URLs are in place.

    The .htaccess rule I gave will take care of this problem. It will remove /game-review/ from any URL that contains it.

    It will not change URLs that do not contain /game-review/.

    Can you give an example of a URL where that will not solve the problem?

    Thread Starter MediaGurus

    (@mediagurus)

    I am transferring my site to new theme today (switching from gamepress to genesis)

    Will let you know if I face any issues.

    Thanks a ton.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to get a list of all URLs’ is closed to new replies.