• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • 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.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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