• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

Question Redirect to www not working

nirku

New Pleskian
Hi everyone,

I have a subdomain eg (test.test.com) created in plesk with all necessary DNS records, including (www.test.test.com)

My need is when accessed the subdomain (test.test.com) it should redirect & load like (www.test.test.com)

Tried with all redirection codes through (web.config) & (.htaccess) nothing clicked.

Can anyone suggest me with tips or solution to resolve it.

WEBSERVER: IIS running with plesk (Windows 2016)
 
Hi @nirku,

I tested with this code and it works fine here.

Code:
<rewrite>
            <rules>
                <rule name="Imported Rule 1" stopProcessing="true">
                    <match url="(.*)" ignoreCase="false" />
                    <conditions logicalGrouping="MatchAll">
                        <add input="{HTTP_HOST}" pattern="^test.test.com" ignoreCase="false" />
                    </conditions>
                    <action type="Redirect" url="http://www.test.test.com/" redirectType="Permanent" />
                </rule>
            </rules>
        </rewrite>
 
Back
Top