• 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.

Catchall for subdomain

D

damon

Guest
I'm trying to setup a server alias for a subdomain. This is for a community site with member generated blogs. So the idea is to have a blog url like http://max.blog.example.com for user max. So the alias is *.blog.example.com

The instructions in the php blogging module for url's are
Code:
a) 	requirements
    1.	webserver with mod_rewrite module enabled
    2.	usage of .htaccess-files is possible
    3.	make a dns catchall entry to a subdomain at
	*.blogs.yourdomain.com in your nameserver zonefile
	In this example the postnuke user "max" will
	be able to reach his blog typing the url
	max.blog.yourdomain.com

b)	and what's to do then?

	Store the folliwing ruleset in your .htaccess-file

	RewriteCond   %{HTTP_HOST}                 ^www\.[^.]+\.subdomain\.domain\.tld$
	RewriteRule   ^(.+)                        %{HTTP_HOST}$1          [C]
	RewriteRule   ^www\.([^.]+)\.subdomain\.domain\.tld(.*) [url]http://www.domain.tld/index.php?module=pnWebLog&func=UnameRedirect&uname=[/url]$1 [L]
	RewriteCond   %{HTTP_HOST}                 [^.]+\.subdomain\.domain\.tld$
	RewriteRule   ^(.+)                        %{HTTP_HOST}$1          [C]
	RewriteRule   ([^.]+)\.subdomain\.domain\.tld(.*) [url]http://www.domain.tld/index.php?module=pnWebLog&func=UnameRedirect&uname=[/url]$1 [L]

I've created a subdomain blog.example.com and then created a vhost.conf in the conf folder of that subdomain, and created an .htaccess file with the above contents. (ran webmanger and restarted httpd) it's not working, I'm unsure if i'm following these instructions correctly in the "Plesk World".

What steps would you take to follow these instructions?

Thanks,
 
Back
Top