301 Redirect Online Logo

301 Redirect

Online Tools Examples Generators

URL REDIRECT GENERATORS

We provide a collection of professional url redirect generator tools for the batch creation of a special code used to make redirects. We have bulk pure PHP online 301 generator, Apache configuration file page to page redirect generator, generator for AWS S3 console. Each tool has a wide range of options to handle any page to page redirection and produce a redirect code you need.

301 REDIRECT GENERATOR

HOW TO CHOOSE THE RIGHT REDIRECT TOOL?

What is the 301 redirect?

    It is special information (code) sent to the browser or search bot by your server on a certain page visit. The code means moved permanently.

How to choose a right generator for a permanent URL redirect?

    If your server is Apache and You have access to one of the configuration files, You can use RewriteRule or RedirectMatch redirection code. Use RedirectMatch only if already have a lot of such redirects you need to keep. In case You have access to PHP files only You can use pure PHP 301 redirect code generator. If You use AWS S3 for static website hosting, consider special JSON code for redirects. We do not have generators for Nginx of Microsoft servers at this moment.

Why should I use redirections?

    To keep your site searchable by search engines like Google you need to apply 301 redirect to old pages after url change. Without this information search bots can't understand (in most of the cases) that page url was changed, but the content is the same and valuable for to be visible in search results. If your income depends on organic search, there is a very special reason to do redirects in the right way. So, if you decided to change your domain or just rename page url you need to make redirects. One of our code generation tools may help you in such situations.

When should I apply a permanent redirect?

    1. You decided to change url for some page to make it more relevant to page content for a better user experience. - You need redirect from old url to new url.
    2. You deleted some page and created a new page with similar content. - You may need to make such redirect to keep PageRank and positions in search.
    3. You replaced the whole site with a newly built one and you have a new url structure. You will need to do mass redirects. Bulk redirect generators will help with this task.

"Redirect" vs "RewriteRule"

   If You already have Apache redirect code like Redirect 301 "/old" "http://example.com/new", note that these rules are handled with "mod_alias", but not "mod_rewrite". While both modules can do permanent redirects, "mod_rewrite" is more functional. Mod_rewrite will make rewrite system more flexible and can help you in the future. For example, "mod_alias" can't fully handle query strings.  These Apache modules have separate flow and Redirect rules can conflict with Your new "mod_rewrite" rules. Also, be careful, because the rule works on a directory basis and all files inside directories and subdirectories will be redirected too. So, If you need to use batch online redirect generator and you have a small amount of Redirect 301 rules, we can recommend rewriting these rules with "mod_rewrite" functionality to keep the logic clean. For simple redirects and some heavy load enterprise solutions, mod_alias can be a good choice too. Mod_alias documentation here. Mod_rewrite documentation here.

WordPress

    Maybe, most popular server for WordPress is Apache. While many SEO plugins provide a possibility to add and manage PHP redirects in WordPress admin panel, we, in general, can't suggest using permanent redirect WordPress plugins because Apache redirects are much faster and, therefore, better for user experience and for SEO in many cases. Some plugins can work with Apache configuration file directly, but it is a less secure approach, so, better to use other methods.