Skip to content

Redirects

Because the VIP Platform uses NGINX (not Apache), there are no .htaccess files. Redirects for URLs must be handled with alternative methods. The most suitable solution(s) for a site’s redirects should be chosen based on the amount and types of redirects needed.

Plugins for handling redirects

  • The Safe Redirect Manager plugin is useful for managing a small number of redirects (fewer than 250), and for redirects that will change frequently. Safe Redirect Manager also allows the use of wildcard or regex in redirects.
  • The WPCOM Legacy Redirector plugin is designed for managing a large number of redirects (greater than 300) for inactive legacy URLs that now return a 404 HTTP response status code.

Redirects for files

Redirects cannot be configured for any URLs that include /wp-content/uploads/*. The VIP File System, which resides upstream from application code, serves all files at that path. A reverse proxy is a possible solution for making a static asset available at a specific URL.

By default, redirects and custom rewrite rules cannot be configured for any assets that match the regex \.(css|js|jp(e)?g|gif|png|swf|ico)$, regardless of the file’s URL. A 404 response will be returned by NGINX for requests to any file URIs that match that regex and do not exist within the VIP File System path (i.e. /wp-content/uploads/).

It is possible to request VIP Support to disable the default behavior for asset request URLs that match the regex but do not include /wp-content/uploads/*. If NGINX returns a 404 for qualifying requests, the request will be allowed to fall back on application code. Custom PHP logic can be added to application code that captures and redirects the request (301 moved permanently) to a different URL.

This alternative method can be useful capturing non-compatible paths for images post-migration, for example if migrating from a host where the site’s default directory structure for uploads was not /wp-content/uploads/.

Last updated: July 01, 2024

Relevant to

  • WordPress