• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

How do I setup httpd 301 redirect

P

PatO

Guest
A subdomain of mine has moved, and in terms of SEO, I need to setup a 301 redirect.

This was easily achievable with a standard httpd.conf, however with Plesk I am confused as to where to put the following directive. I have placed it into my /var/www/vhosts/domain/conf/vhosts.conf, but it is not working.

Can someone help? Thanks


<VirtualHost 1.2.3.4:80>
ServerName blog.domain.com
ServerAlias www.blog.domain.com
Redirect 301 / http://www.domain.com/
</VirtualHost>
 
Back
Top