Title: Speedy Page Redirect
Author: Geert De Deckere
Published: <strong>8. Mai 2011</strong>
Last modified: 21. August 2013

---

Plugins durchsuchen

Dieses Plugin **ist nicht mit den jüngsten 3 Hauptversionen von WordPress** getestet
worden. Es wird möglicherweise nicht mehr gewartet oder unterstützt und kann Kompatibilitätsprobleme
haben, wenn es mit neueren Versionen von WordPress verwendet wird.

![](https://s.w.org/plugins/geopattern-icon/speedy-page-redirect.svg)

# Speedy Page Redirect

 Von [Geert De Deckere](https://profiles.wordpress.org/geertdd/)

[Herunterladen](https://downloads.wordpress.org/plugin/speedy-page-redirect.0.4.1.zip)

 * [Details](https://de.wordpress.org/plugins/speedy-page-redirect/#description)
 * [Rezensionen](https://de.wordpress.org/plugins/speedy-page-redirect/#reviews)
 *  [Installation](https://de.wordpress.org/plugins/speedy-page-redirect/#installation)
 * [Entwicklung](https://de.wordpress.org/plugins/speedy-page-redirect/#developers)

 [Support](https://wordpress.org/support/plugin/speedy-page-redirect/)

## Beschreibung

This lightweight plugin adds a meta box to your page and post screens. You can enter
a new destination URL to which the page will be redirected.

#### Funktionen

 * Choose between permanent (301) and temporary (302) redirects.
 * Support for custom post types out of the box.
 * Filters for customizing some settings.
 * Compatible with WP Multisite.
 * Fully translatable. Included languages: English, Dutch.

## Screenshots

 * [[
 * The Speedy Page Redirect meta box

## Installation

 1. Upload the `speedy-page-redirect` folder to your `/wp-content/plugins/` directory.
 2. Activate the plugin through the “Plugins” menu in WordPress.

## FAQ

  Installation Instructions

 1. Upload the `speedy-page-redirect` folder to your `/wp-content/plugins/` directory.
 2. Activate the plugin through the “Plugins” menu in WordPress.

  Can you create redirects relative to the site’s URL?

Yes. In the “Destination URL” field, just start your URL with a forward slash instead
of “http://”. The site address, set in Settings > General, will automatically be
prepended.

  Is it possible to choose which post types Speedy Page Redirect applies to?

Yes. By default “page”, “post” and all public custom post types are taken into account.
You can customize this selection via the `gdd_spr_post_types` filter. It should 
return an array with the applicable post types.

Example:

    ```
    add_filter( 'gdd_spr_post_types', 'gdd_spr_post_types' );
    function gdd_spr_post_types( $post_types ) {
        // Disable redirection for the "book" post type
        unset( $post_types['book'] );
        return $post_types;
    }
    ```

  Is it possible to customize the types of HTTP redirects to choose from?

Yes. By default you can choose from a 301 (permanent) and 302 (temporary) redirect.
To customize this list, a filter called `gdd_spr_statuses` is available. It should
return an array with the keys corresponding to the HTTP response codes. The array
values are descriptions used in the dropdown list.

Note: if the statuses list only contains a single entry, the dropdown list is automatically
omitted from the meta box.

Example:

    ```
    add_filter( 'gdd_spr_statuses', 'gdd_spr_statuses' );
    function gdd_spr_statuses( $statuses ) {
        // Remove temporary redirection from the list
        unset( $statuses[302] );
        return $statuses;
    }
    ```

## Rezensionen

![](https://secure.gravatar.com/avatar/e94d8149d270af14a7ef7c03e38d6974da81ad82148768f913a266dfb24815b0?
s=60&d=retro&r=g)

### 󠀁[Excellent](https://wordpress.org/support/topic/excellent-5826/)󠁿

 [Bob](https://profiles.wordpress.org/lucifer79/) 21. Januar 2018

Excellent plugin

 [ Alle 10 Rezensionen lesen ](https://wordpress.org/support/plugin/speedy-page-redirect/reviews/)

## Mitwirkende und Entwickler

„Speedy Page Redirect“ ist Open-Source-Software. Folgende Menschen haben an diesem
Plugin mitgewirkt:

Mitwirkende

 *   [ Geert De Deckere ](https://profiles.wordpress.org/geertdd/)

„Speedy Page Redirect“ wurde in 3 Sprachen übersetzt. Danke an [die Übersetzer](https://translate.wordpress.org/projects/wp-plugins/speedy-page-redirect/contributors)
für ihre Mitwirkung.

[Übersetze „Speedy Page Redirect“ in deine Sprache.](https://translate.wordpress.org/projects/wp-plugins/speedy-page-redirect)

### Interessiert an der Entwicklung?

[Durchstöbere den Code](https://plugins.trac.wordpress.org/browser/speedy-page-redirect/),
sieh dir das [SVN-Repository](https://plugins.svn.wordpress.org/speedy-page-redirect/)
an oder abonniere das [Entwicklungsprotokoll](https://plugins.trac.wordpress.org/log/speedy-page-redirect/)
per [RSS](https://plugins.trac.wordpress.org/log/speedy-page-redirect/?limit=100&mode=stop_on_copy&format=rss).

## Änderungsprotokoll

#### 0.4.1

 * Bugfix: HTML5 „url“ input type does not accept „http://“ only which was the default
   value.

#### 0.4

 * Improved loading of translation files.
 * Using HTML5 „url“ input type for the URL field.
 * Made HTTP status code immediately visible in the redirection type dropdown.
 * Applied WP coding standards.

#### 0.3

 * Uninstalling now removes all plugin data from the database.
 * Expanded documentation/FAQ.
 * Hide redirection dropdown list if only a single option is available.
 * First entry in the statuses list will be used as default redirection type.

#### 0.2.1

 * Fixed „undefined index“ error.
 * Fixed loading of language file.

#### 0.2

 * Relative URLs are now supported (start with a slash).
 * Entering a protocol only is considered empty input.

#### 0.1

 * Erstveröffentlichung

## Meta

 *  Version **0.4.1**
 *  Zuletzt aktualisiert **vor 8 Jahren**
 *  Aktive Installationen **1.000+**
 *  WordPress-Version ** 3.0 oder höher **
 *  Getestet bis **3.6.1**
 *  Sprachen
 * [Dutch](https://nl.wordpress.org/plugins/speedy-page-redirect/), [English (US)](https://wordpress.org/plugins/speedy-page-redirect/),
   [Russian](https://ru.wordpress.org/plugins/speedy-page-redirect/) und [Swedish](https://sv.wordpress.org/plugins/speedy-page-redirect/).
 *  [Übersetze in deine Sprache](https://translate.wordpress.org/projects/wp-plugins/speedy-page-redirect)
 * Schlagwörter
 * [301](https://de.wordpress.org/plugins/tags/301/)[forward](https://de.wordpress.org/plugins/tags/forward/)
   [redirect](https://de.wordpress.org/plugins/tags/redirect/)[redirection](https://de.wordpress.org/plugins/tags/redirection/)
   [url](https://de.wordpress.org/plugins/tags/url/)
 *  [Erweiterte Ansicht](https://de.wordpress.org/plugins/speedy-page-redirect/advanced/)

## Bewertungen

 5 von 5 Sternen.

 *  [  9 5-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/speedy-page-redirect/reviews/?filter=5)
 *  [  0 4-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/speedy-page-redirect/reviews/?filter=4)
 *  [  0 3-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/speedy-page-redirect/reviews/?filter=3)
 *  [  0 2-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/speedy-page-redirect/reviews/?filter=2)
 *  [  0 1-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/speedy-page-redirect/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/speedy-page-redirect/reviews/#new-post)

[Alle Rezensionen anzeigen](https://wordpress.org/support/plugin/speedy-page-redirect/reviews/)

## Mitwirkende

 *   [ Geert De Deckere ](https://profiles.wordpress.org/geertdd/)

## Support

Möchtest du etwas mitteilen? Brauchst du Unterstützung?

 [Support-Forum anzeigen](https://wordpress.org/support/plugin/speedy-page-redirect/)