Alias For "www" Instead Of A Being Subdomain

Sep 15, 2007

I'm trying to figure out via cpanel how to trick it into allowing example.domain.com
as an alias for www. domain.com instead of making "example" a subdomain,
in order to mimic a structure on a server we're merging.

View 9 Replies


ADVERTISEMENT

Plesk 11.x / Linux :: Content From Subdomain Server Alias Over HTTPS Not Being Served By Nginx

Jul 14, 2014

We're running Plesk 11.5 on a CentOS 6.5 VPS and we would like to resolve the following problem:

We've configured a physical subdomain, lets say sub1.mydomain.com, and set up a couple of aliases for that domain in Plesk under:

Web Server Settings for sub1.mydomain.com > Additional Apache directives > "Additional directives for HTTP"

Code:
ServerAlias mysub1.mydomain.com
ServerAlias mysub2.mydomain.com

And

Web Server Settings for sub1.mydomain.com > Additional Apache directives > "Additional directives for HTTPS"

Code:

ServerAlias mysub1.mydomain.com
ServerAlias mysub2.mydomain.com

This config is working fine until we try to load resources from the alias over ssl, I believe something is missing in the Nginx config. I'm not getting any info using the logs.

For example:

http://sub1.mydomain.com/img/myimage.jpg --> works!
https://sub1.mydomain.com/img/myimage.jpg --> works!

http://mysub1.mydomain.com/img/myimage.jpg --> works!
http://mysub1.mydomain.com/img/myimage.jpg --> not loading

http://mysub2.mydomain.com/img/myimage.jpg --> works!
http://mysub1.mydomain.com/img/myimage.jpg --> not loading

Do we need to specify alternative directives for Nginx?

View 1 Replies View Related

Apache :: Redirection Page From Subdomain To New Subdomain

May 11, 2015

Wordpress installation (WPML with 3rd level domain es. site. com, fr. site. com).

I need to redirect page from subdomain to a new subdomain

Example:
esp.site.com/oldpage -> es.site.com/newpage (different subdomain)
esp.site.com/oldpage1 -> es.site.com/newpage
esp.site.com/oldpage2 -> es.site.com/newpage

Source site is very chaotic and there are no clear rule for redirection (no regex )

So I need to redirect every page but syntax:

Redirect 301 esp.site.com/oldpage http:// es.site.com/newpage

doesn't work!

which is the correct syntax ?

Can I manage all from one .htaccess file in main root (www) or should I create "esp" directory (and point old subdomain to it - one for every language) and put .htaccess in every directory with redirection ? 

View 1 Replies View Related

A Record To Alias

Nov 15, 2008

I have built a new website (ASP) for a friend. Their current domain "hissite.co.uk" is on another server - they want their email to stay with that hosting company.

I have created their new site on another server using a similar domain name "hissite2.co.uk". The server is a shared hosting account so the IP isn't dedicated.

Question

Making a change to the A Record asks for an IP address but doesn't work when pointing to a shared hosting server which holds lots of domains. I don't want to change the CName or set up a 301 Redirect.

I was told that if I add an alias of the main domain (hissite.co.uk) on the new server the change to the A record on the current server, although the IP address is pointing to a shared hosting server will work.

View 4 Replies View Related

Web Hosting Under An Alias

Dec 14, 2008

Is it possible to open up a web hosting contract with a company under an alias / address with an alias?

View 12 Replies View Related

Apache 2.0 Alias

Mar 31, 2007

I currently have the following in my httpd.conf:

Quote:

Alias /icons/ "/var/www/icons/"
<Directory "/var/www/icons">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>

Recently I have tried to add custom alias /volano/

Quote:

Alias /volano/ "/home/volano/vcclient/"

When I go to mysite.com/volano/ i get Forbidden error (error 403).

Why is that? I have CentOS 4.4-32.

My Apache version is 2.0

View 8 Replies View Related

Alias For Name Servers

Oct 6, 2007

If I created alias like below:
ns1.hostingname.com cname ns1.hostingcompany.com
ns2.hostingname.com cname ns2.hostingcompany.com

Would it still work?

What I am trying to do is hide who my host is for reseller reasons.

View 4 Replies View Related

Domanin Alias In Plesk

Jun 19, 2009

I've a VPS with Plesk. I have a website running a website and I've got a second domain.

I wish to setup second domain and forward it to first domain. I've used doamin alias page. However when I call second URL it's displaying a default plesk page instant of my first URL.

View 1 Replies View Related

Different Email Server Alias For Every Account

Aug 12, 2008

I have a VPS (vps.example.com) setup with few sub accounts set-up. All sub accounts can send emails using specified domain, however email header will always display my VPS's name.

for example:

"from localhost ([127.0.0.1] helo=example.NET) by vps.example.com"
Is it possible to set it up so every account has it's own server name for example:
smtp.example.net
mail.example.org
or vps.domain.com

Platform: Cent OS
panels:VZPP, WHM, cPanel
IP: total of 3, 2 used for name servers, can purchase more if needed.
Access: root level access.

View 0 Replies View Related

Alias To A Php Script (php Suexec Installed)

Aug 13, 2007

i install roundcube webmail (php)

i want to add an alias like /mail for all domain to /usr/src/roundcube

i add this command in httpd.conf:

Quote:

Alias /mail /usr/src/webmail

but because suphp installed , apache run it under root user (or user assigned to it) and suphp produce "500 Internal server Error"

View 0 Replies View Related

Apache :: 2.4.7 - Can't Get Simple Alias To Work

Jul 25, 2014

I'm using Apache 2.4.7 on Linux Mint 17.

Apache is currently working fine using an alias for one webserver, weewx. I had a heck of a time configuring the alias though, most configurations would result in a 404 error.

I'm trying to get it working with another webserver, IOG. And I'm again getting 404 errors...

Currently my IOG.conf file looks like this:

Code:
Alias /IOG /home/Storage/iog
<Directory /home/Storage/iog>
Options Indexes
AllowOverride None
Require all granted
</Directory>

/home/Storage/iog is good, it's the exact path and is readable/writable by all users.

Options Indexes is included because IOG does not generate an index.html.

AllowOverride None is included because I'm not using .htaccess files, and because it worked for the weewx configuration file.

Require all granted is used because I'm not serving this external to my LAN and would like all LAN machines to have access.

My (working) weewx configuration file:

Code:
Alias /weewx/ "/home/Storage/weewx/"
<Directory "/home/Storage/weewx/">
Options Indexes Includes FollowSymlinks
AllowOverride None
Require all granted
</Directory>

Of course I tried that first, modifying the paths to IOG, and got a 404 error.

I make sure to reload Apache each time I make a change to the configuration file.

View 2 Replies View Related

Apache :: Using Alias With HTAccess Files

Feb 20, 2013

Apache httpd Users mailing list, but nobody there has responded in several days. I'm using mod_alias to map URLs to directories that are outside of Apache's DocumentRoot. However, it seems that .htaccess files are being ignored in these directories.

View 6 Replies View Related

Plesk 12.x / Linux :: Alias Without Www Not Working

Aug 23, 2014

Configuration:
Config server / Preferred domain for web sites / domain.tld
Config hosting to domain / Preferred domain / domain.tld

Problem: I've created a primary domain.tld and work without problems I type www.domain.tld and work fine redirect to domain.tld format but I've created different alias and only work www.domain.tld format don't work domain.tld format.

In google webmastertools i see this error in domain.ltd panel

Redirect

HTTP/1.1 301 Moved Permanently
Server: nginx
Date: Fri, 22 Aug 2014 18:09:28 GMT
Content-Type: text/html; charset=UTF-8
Content-Length: 0
Connection: keep-alive
Location: http://www.domain.tld/
X-Powered-By: PleskLin
MS-Author-Via: DAV
Vary: User-Agent

How can solve to Alias work with domain.tld format?

View 1 Replies View Related

Plesk 12.x / Linux :: Where To Add Domain Alias

May 5, 2015

Plesk 12. Using the "Corporate/Business" -> "Power User view".

Where do you add a Domain Alias? The webspace has no option to add this and all documentation I've found so far seems to indicate there should be a button that says add domain or add domain alias.

View 2 Replies View Related

Plesk 12.x / Linux :: Domain Alias Without Www

Feb 16, 2015

I want to setup a domain alias without www in front of it. A quite simple task in the past...but not with Plesk 12. So I have a service domain (for example: service.com) that I use for ALL clients. But each client has only a subdomain of it as alias in his account. so client1.service.com, client2.service.com....and so on. And only that subdomain...nothing more...for each account. How to achieve that in Plesk 12?

View 1 Replies View Related

After Easyapache Www.domain Alias No Longer Works

Feb 7, 2008

I just updated my apache and php via easyapache and since doing so, the WWW. alias for all our domains just goes to a cpanel success page

if i go to [url]it functions the way it used to

going to [url]just goes to a cpanel page.

having trouble finding where to change this back the way it was.

View 5 Replies View Related

Apache :: VirtualHosts - Can't Access Some Alias Page

May 9, 2013

I can't access to some alias page by URL....

(getting 403 - Forbidden) but i can by https - [URL] ....

Code:

<VirtualHost 10.7.10.10:80>
ServerName mydomain.com
ServerAlias www.mydomain.com
DocumentRoot "c:/Apache24/htdocs"
Alias /static "d:/static"

[Code] .....

Code:

<VirtualHost 10.7.10.10:443>
DocumentRoot "C:/Apache24/htdocs"
ServerName domain.com
ServerAlias www.domain.com
SSLEngine on

[Code] .....

What could be wrong as the config is exactly the same for both VirtualHosts

View 3 Replies View Related

Plesk 12.x / Linux :: Domain With Ton Of Alias - Not Showing All Of Them

Sep 15, 2014

I have a domain that has a ton of alias domains in my panel.

If I get it to show "All" entries per page, change it to "Active List", and get back to "Classic List", they show up correctly.

Nevertheless, I have to do it every single time I log in to the panel.

Pagination also doesn't seem to work in 10, 25 and 100 entries if I don't do that.

That started happening after some update on version 12.

View 19 Replies View Related

Plesk 11.x / Windows :: Adding Domain Alias

Jun 10, 2013

I use Plesk 11.0.9 Update #53 on Windows 2008 SP2. Nameservers and mail server are external servers and fully working.I have a 'fake' web site (roundcube. local) in which I've successfully installed roundcube and I would use it as webmail.I've added a domain alias 'webmail2.domain.com' and it works like a charm.Now I've moved the main domain "domain.com" on the plesk server and I would like to add a 'webmail.domain.com' domain alias to the 'roundcube.local' website.If I try to do it, I receive this error:

"Error: Wrong prefix for domain alias"..Even if I try to add webmail.anotherdomain.com (not installed on the Plesk server) I get the same error.The error shows up either the host is configured to the Plesk machine or not.If I set the binding directly in IIS it works but I'd like to use the plesk to do this.

View 3 Replies View Related

Plesk 12.x / Windows :: Create TXT In Alias Domain?

Aug 24, 2014

I try to create a TXT registry DNS using this:

default._domainkey.my-domain.com
_domainkey.my-domain.com

All work , but in Domain Alias, cannot create any registry TXT wih symbols like '_'

View 1 Replies View Related

Plesk Automation :: Create Email Alias In API?

Feb 7, 2014

how to create email alias in plesk api.?

View 3 Replies View Related

Plesk 12.x / Linux :: Wildcard Subdomains Of Alias Domains

Jan 3, 2015

System: Plesk Panel 12, updated on CentOS 6

Situation:
"Main-domain" domain with 2 "alias-domains" (301-forward). For "Main-domain" I created a wildcard subdomain. All works fine.

ToDo:
I want to create wildcard domains for both "alias-domains".

Problem:
It is not possible to create wildcard subdomains for both "alias-domains".

1. How to create wildcard-subdomains on "alias-domains"?
2. How do I disable Plesk to respond to every domain, which isnt covered by a wildcard?

View 6 Replies View Related

Plesk Automation :: Email Alias Name Is Not Changed On Update

Jul 2, 2014

We have noticed that if we have created example@domain.tld email account and we create new domain alias for example alias.tld. We have already created email accounts for example@domain.tld and example@alias.tld.

Now, if we change email account name for example example2@domain.tld only mailbox for example2@domain.tld is updated, example@alias.tl is unchanged.

In this case if someone send email to example2@alias.tld email will not be delivered because alias mail name was not updated. We have noticed this error in PPA 11.1 and PPA 11.5.

View 1 Replies View Related

Plesk 12.x / Linux :: Domain Alias With Mail Address

Aug 25, 2014

When creating a domain alias in Plesk, I can activate Web, Mail and DNS. When I activate "Mail" I would think that I now can create a mail address with that domain (myaddress @ domainalias.com). But I can't. If I create a new one I only can choose between the "real" domains. Is this a bug or a feature?

View 2 Replies View Related

Plesk 12.x / Linux :: After Migration No Alias Email And Webmail

Nov 17, 2014

I have recently migrated from one server with Plesk 11 to another server with Plesk 12 and cant get the alias emails work properly like they worked before the migration. I can send emails from any alias@alias.domain (via Outlook), but cant receive them.I can receive emails only from the mailbox email of the main domain, but not for the alias-email of that mailbox for an alias domain that worked well for Plesk 11. Where might be the problem?

I have created a webmail.domain.tld in the Webmail-Services (where it says Horde 6.2.1 is installed), but the webmail.maindomain.tld is not working. I get displayed only the "webservers default page". Webmail.maindomain.tld worked well in Plesk 11.There is also no "Webmail" link in the domain control pannel like it used to be in the Plesk 11.I have created a new abonnement with a new domain to test this, but there is no Webmail link for this abonnement as well.

You message for <alias@alias.tld> from 2014/11/17 could not be delivered. 4.0.0 smtp; 454 4.7.1 <alias@alias.tld>: Relay access denied

View 2 Replies View Related

Plesk 11.x / Linux :: Setting Up Separate Mail Accounts For Domain Alias?

May 6, 2014

I've got a situation in which I need to have a set of mail accounts that share a domain name with a domain that's already in use as a domain alias and because the domain is already in use, I'm unable to create a new account using that domain. I tried explicitly adding "www" to the domain alias so I could keep the www.domain.com address as an alias and reserve the "domain.com" name for use as a separate account, but Plesk won't allow for that.

How to address this? The idea I'm currently considering is to delete the domain alias and then create the new account and manually set the DOCUMENT ROOT of the new account to refer to the other domain's document root. I'm sure this could create some difficulty in Plesk so I'm looking for input before trying it. I'm actually not even sure exactly where I would be able to redefine the document root with Plesk allowing the change and not overwriting it later.

If all else fails, I can setup a new account on a different and unrelated Plesk server, but I'd prefer not to do that.

View 2 Replies View Related

Plesk 11.x / Linux :: Remove Domain Alias Warns It Will Delete All Related Files

Sep 2, 2013

I think the wrong text is displayed for the option "Remove Domain Alias".

In Plesk 11.5.30 Update #13, in a Webspace, on the Websites & Domains tab, if I click an alias, a window appears for the alias with the option to "Remove Domain Alias". If I move the cursor over the text "Remove Domain Alias", or click on the link, I see a pop-up: Removing this website will also delete all related files, directories, and web applications from the server.

I think this is incorrect because removing an alias should not remove any files, directories, and web applications.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved