• 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
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

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