# Managing 301 Redirects

URL/page redirects can help direct users away from pages that no longer exist or to more preferred locations.

Solodev supports URL redirects with 301 redirects and an .htaccess file.

Solodev creates an .htaccess file with the creation of each website. This document will show the user how to add a 301 redirect to the .htaccess file.

# Adding a 301 redirect to a website

  • Click Websites under the Workspace section of the Solodev Dashboard.
  • Click on the Website to open it.

document-overview

  • Click Redirects located under the Update Website button.

document-overview

  • If the administrator has created and customized their error 404 document, enter the following lines of code to direct the browser to the error document:
RewriteEngine On

RewriteBase /

### .htaccess file ###

ErrorDocument 404 /404.stml
  • Enter the 301 redirect in the following format:
Redirect 301 /old-page.stml http://www.mydomain.com/new-page.stml
The administrator can add additional 301 redirects by placing each redirect on its own line in the .htaccess file. 
  • Click Submit.

document-overview