• Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Subdomains redirect www prefix

Luco

New Pleskian
Hey,

this is my first question in this community. We are starting to migrate our servers to Plesk and are building all necessary processes with the plesk xml api. everything works like a charme except this little problem.

If i create a subdomain via api
Code:
<subdomain>
    <add>
        <parent>domain.com</parent>
        <name>example</name>
        <property>
            <name>www_root</name>
            <value>httpdocs/web/</value>
        </property>
    </add>
</subdomain>

the vhost configuration at apache gets this part

Code:
<IfModule mod_rewrite.c>
        RewriteEngine On
        RewriteCond %{HTTP_HOST} ^subdomain.domain.com$ [NC]
        RewriteRule ^(.*)$ http://www.subdomain.domain.com$1 [L,R=301]
</IfModule>

so every subdomain is redirected to prefix www.
BUT if i create the subdomain via plesk panel, the mod_rewrite isnt created, as i want.
i also tried reconfigure-all, but this rewrite part is always active.

i have no possibility in plesk 12.0.18 to set the setting for www prefix like at normal sites.
So what can i do to prevent it and where can i change it afterwards?

thanks for every hint
kind regards
 
okay, i figured it out for myself
in global server settings, the default for "Preferred domain for websites" was set to www.domain.tld

i don´t know, why this affected subdomains, which never have www. prefix but i dont care
 
Back
Top