diff --git a/README.md b/README.md index 2bd758db..9d98818b 100644 --- a/README.md +++ b/README.md @@ -178,6 +178,10 @@ If you’re adding a new item to the array, choose whichever position it should - **url** – organization’s website URL. - **github** – optional GitHub username when relevant, which can be used to make sure the sponsor doesn’t appear twice in a list—as seen in the [Sponsors.astro](https://github.com/ddev/ddev.com/blob/main/src/components/Sponsors.astro#L53) component. +## Redirects + +Any redirect can be added to ddev.com by editing `public/_redirects`. This can be useful to provide short redirects in a variety of contexts. Redirects can be to local URLs or to DDEV docs, for example. + ## Build & Deployment For the site to exist at `ddev.com`, it needs to be built and hosted somewhere. Cloudflare Pages responds to commits in order to build and deploy the site. diff --git a/public/_redirects b/public/_redirects index 6067aa42..64afc5c7 100644 --- a/public/_redirects +++ b/public/_redirects @@ -1,4 +1,5 @@ /install.sh https://raw.githubusercontent.com/ddev/ddev/master/scripts/install_ddev.sh 302 +/port-conflict https://ddev.readthedocs.io/en/stable/users/usage/troubleshooting/#web-server-ports-already-occupied /ddev-local/ddev-wsl2-getting-started/ https://ddev.readthedocs.io/en/stable/users/install/ddev-installation/#windows 301 /ddev-local/apache-solr-with-drupal-8-and-search-api-solr/ https://github.com/ddev/ddev-drupal9-solr 301 /ddev-local/ddev-local-web-container-customization-in-v1-8-0/ https://ddev.readthedocs.io/en/stable/users/extend/customizing-images/ 301