• 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!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

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