• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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