Skip to content
  • Solutions
    By Role
    • For Developers
    • For Content Managers
    • For Agencies
    • For IT Admins
    • For Web Hosters
    • For Developers
    • For Content Managers
    • For Agencies
    • For IT Admins
    • For Web Hosters
    By Infrastructure
    • Overview
    • AWS
    • Microsoft Azure
    • Alibaba Cloud
    • Google Cloud Platform
    • Vultr
    • Overview
    • AWS
    • Microsoft Azure
    • Alibaba Cloud
    • Google Cloud Platform
    • Vultr
    • Digital Ocean
    • Linode
    • Upcloud
    • Oracle
    • OVH
    • Digital Ocean
    • Linode
    • Upcloud
    • Oracle
    • OVH
  • Product
    • Plesk Features
    • Plesk Editions
    • What’s new
    • Pricing
    • Roadmap
    • Lifecycle Policy
    • Extensions Catalogue
  • Pricing
  • Extensions
    Featured Extensions
    • SocialBee
    • WP Toolkit
    • Sitejet Builder for Plesk
    • SEO Toolkit
    • Joomla! Toolkit
    • Premium Email
    • Email Security
    • SocialBee
    • WP Toolkit
    • Sitejet Builder for Plesk
    • SEO Toolkit
    • Joomla! Toolkit
    • Premium Email
    • Email Security
    Bundles and packs:
    • Business and Collaboration Edition
    • WP pack
    • Hosting pack
    • Power pack
    • Language pack
    • Business and Collaboration Edition
    • WP pack
    • Hosting pack
    • Power pack
    • Language pack

    See all Extensions

  • For Partners
    • Plesk Contributor Program
    • Plesk Partner Program
    • Affiliate program
    • Plesk University
  • Help Center
    • Documentation
    • Professional Services
    • Support
    • Contact Us
    • Wiki
    • Forum
  • Plesk 360 login
  • Free Trial
  • Pricing
  • Solutions
    • By Role
      • For Developers
      • For Content Managers
      • For Agencies
      • For IT Admins
      • For Web Hosters
    • By Infrastructure
      • Overview
      • Plesk on Amazon Web Services (AWS & Lightsail)
      • Microsoft Azure
      • Alibaba Cloud
      • Google Cloud Platform
      • Vultr
      • DigitalOcean
      • Linode
      • UpCloud
      • Oracle
      • OVH
  • Products
  • Pricing
  • Extensions
    • Featured Extensions
      • SocialBee
      • WP Toolkit
      • Sitejet Builder for Plesk
      • SEO Toolkit
      • Joomla! Toolkit
      • Premium Email
      • Email Security
    • Bundles and packs:
      • Business and Collaboration Edition
      • WP pack
      • Hosting pack
      • Power pack
      • Language pack
      • See all Extensions
  • For Partners
    • Plesk Contributor Program
    • Plesk Partner Program
    • Affiliate Program
    • Plesk University
  • Help Center
    • Documentation
    • Professional Services
    • Support
    • Contact Us
    • Wiki
    • Forum
  • Plesk 360 login
  • Free Trial
  • Pricing
  • Solutions
    • By Role
      • For Developers
      • For Content Managers
      • For Agencies
      • For IT Admins
      • For Web Hosters
    • By Infrastructure
      • Overview
      • Plesk on Amazon Web Services (AWS & Lightsail)
      • Microsoft Azure
      • Alibaba Cloud
      • Google Cloud Platform
      • Vultr
      • DigitalOcean
      • Linode
      • UpCloud
      • Oracle
      • OVH
  • Products
  • Pricing
  • Extensions
    • Featured Extensions
      • SocialBee
      • WP Toolkit
      • Sitejet Builder for Plesk
      • SEO Toolkit
      • Joomla! Toolkit
      • Premium Email
      • Email Security
    • Bundles and packs:
      • Business and Collaboration Edition
      • WP pack
      • Hosting pack
      • Power pack
      • Language pack
      • See all Extensions
  • For Partners
    • Plesk Contributor Program
    • Plesk Partner Program
    • Affiliate Program
    • Plesk University
  • Help Center
    • Documentation
    • Professional Services
    • Support
    • Contact Us
    • Wiki
    • Forum
  • Plesk 360 login
  • Free Trial
Plesk 360 login
Free Trial

Knowledge Base

Cannot change the Hosting type of a domain: The dropdown for selection is not clickable

 
301 redirect302 redirectapacheclidomains

Symptoms

  • The dropdown for selection of a Hosting type for a domain in Domains > example.com > Dashboard > Hosting is not clickable:

  • On attempts to change the type from CLI, the following message is shown:

    # plesk bin site -u example.com -hst_type std -target_url example.net
    Subscription contains sites, therefore, you cannot change hosting type or delete it.
    exit status 1

  • There are additional domains created within the affected Subscription:

Cause

By design, it is not possible to change the Hosting Type of the Subscription's main domain if there are additional domains due to external workings of Plesk and the limits that they come with.

The main reason is tied to the additional domains, which normally have the content hosted within the main domain's directory.

If you would like to have such functionality in future versions of Plesk, consider voting for the following feature request:

Allow domain forwarding for every domain in a subscription, including the subscription domain – Your Ideas for Plesk

Resolution

As a workaround, configure the forwarding manually for the domain:

Forwarding with 301/302 code

  • For Linux

    1. Log into Plesk

    2. Go to Domains > example.com > Dashboard > Hosting > Disable the Permanent SEO-safe 301 redirect from HTTP to HTTPS option

    3. Navigate to Domains > example.com > Apache & nginx Settings

    4. Add the following directives to both Additional directives for HTTP and Additional directives for HTTPS:

      RewriteEngine On
      RewriteCond %{REQUEST_URI} !^/$
      RewriteRule ^(.*)/$ https://example.net/$1 [R=301,L]

      Note: Replace the https://example.net/ with the desired target location. In case 302 redirect is required, change 301 to 302.

    5. Add the following directives to Additional nginx directives, if it is present:

      return 301 $scheme://example.net;

      Note: The directives above can only be modified by Plesk Administrator. In case they are absent, contact your service provider and ask to apply this article.

  • For Windows

    1. Log into Plesk

    2. Navigate to Domains > example.com > Dashboard > Files

    3. Open web.config file and add the following content right below the <system.webServer> declaration:

      <httpRedirect enabled="true" destination="https://example.net/" httpResponseStatus="Permanent" />

      Note: Replace the https://example.net/ with the desired target location. In case 302 redirect is required, change Permanent status to Found.

Frame forwarding

  1. Log into Plesk

  2. Navigate to Domains > example.com > File Manager and create an index.html file with the following content:

    <html><head><title>Title</title></head>
    <style>
    body {
    margin: 0;
    padding: 0;
    }
    body, iframe {
    width: 100%;
    height: 100%;
    }
    iframe {
    border: 0;
    }
    </style>
    <body>
    <iframe src="https://example.net"/>
    </body>
    </html>

    Note: Replace the http://example.net/ with the desired target location. The target domain must allow iframes: Domain that has frame forwarding hosting type shows blank page

  3. Set the index.html as the main index document: How to set default index file for a domain in Plesk Onyx

Note: There is no such workaround for the "No hosting" type.
If the "No hosting" type is needed…

Tweet
Share
Share
Email
0 Shares
Read the full article
Related Posts

Your Complete .htaccess Guide: Including .htaccess Basics and More

Read More »

NGINX vs Apache – Which Is the Best Web Server in 2024?

Read More »

Top Web Servers For Linux And Windows

Read More »
Knowledge Base

 How to enable redirection from HTTP to HTTPS for a domain in Plesk

Read More »

How to customize Plesk URL

Read More »

Option “Permanent SEO-safe 301 redirect from HTTP to HTTPS” does not work on Windows OS

Read More »

Does Node.js on Plesk support WebSockets (socket.io)?

Read More »

Hosting Wiki

  • Django
  • CLI
  • Linux Containers
  • Google Cloud CDN
  • Windows Server
  • Linux
  • MongoDB
  • HTTP/3
  • HTTP/2
  • Domain
  • Hosting Control Panel
  • Plesk
  • Lighttpd
  • Apache Tomcat
  • NGINX
  • Apache
  • Colocation Hosting
  • Reseller Hosting
  • Cloud Hosting
  • VPS Hosting
  • Dedicated Hosting
  • Shared Hosting
  • Free Hosting
  • Managed Hosting
  • HTTP
X-twitter Linkedin Youtube Reddit Github
  • Product
  • Login
  • Pricing
  • Editions
  • For Partners
  • Partner Program
  • Contributor Program
  • Affiliate Program
  • Plesk University
  • Company
  • Blog
  • Careers
  • Events
  • About Plesk
  • Our Brand
  • Resources
  • User and Admin guides
  • Help Center
  • Migrate to Plesk
  • Contact Us
  • Hosting Wiki
  • Forum
  • Legal
  • Legal
  • Privacy Policy
  • Imprint

© 2025 WebPros International GmbH

Part of the WebPros®  Family