domain

.htaccess domain redirect

Hello Guys, I have a server which has 3 domains all pointing to it. All domains are on the same website. www.domain1.com www.domain2.com www.domain3.com How can I redirect www.domain3.com to www.domain3.com/test.html using .htaccess? Thanks! ...

Validating Domains Using WHOIS in Bulk

Hi, I have created an application in C# that finds Dummy Domains that ends withj .DE and then another part of the application checks them whether they really exists, the dummy are about (40 ^ 63) in number. I can successfully check them against WHOIS and everything is fine. The question is it is taking a second to check a single domain...

.us domain extension vs .com or .net

I have a specific domain name that I would like to purchase. Both the .com and .net versions are owned by different people. I have contacted both owners, and here are the price tags: .com - $25,000 .net - $4,000 Or I could purchase the .us domain name for $10. There's no way I would consider paying that amount for the .com but I mi...

New domain extension

are this a new domain extensions or not? http://azure.snagy.name http://bit.ly ...

Can I develop my own websites on my friend website server ?

If I buy a hosting (+ domain) service for the website of a friend of mine, and then I decide to use the remaining web space and mysql databases for my development and test... is google caching my development websites (in other folders and sub-urls) under his website ? What's the downside to develop on a server with already a productio...

Redirecting mail.example.com to http://mail.google.com/a/example.com

Hi, A domain name that we have is using google mail as its backend, but its not hosted anywhere (no website). How can I, through the registrar interface (I'm using 1&1), redirect ppl who type in http://mail.example.com to http://mail.google.com/a/example.com ? I can create a subdomain and set its DNS/CNAME, but what do I put where? Als...

Is DDD fit for our scenario?

We are trying to come up with an API and serve data-intensive services to potential users. Our scenario: we are more of less a data vendor where we store massive amount of data in normalized database and use queries to retrieve them to be displayed in data-driven web applications. Now, we want to create an API that clients can use to cr...

i want to create domains for different users

I have domains like www.football.com and www.baseball.com. They are linked with www.game.com, which is the parent, and its admin page, www.game.com/admin. i want to create something like www.football.com/userid1/admin, www.baseball.com/userid2/admin, etc. for different users. All the domains are mapped to same IP and there is only one...

selling domain to different user

Hello experts, 100 domains are using same database and same IP .I am controlling all of them.Is it possible to sell one of them to a different user? the domain structure is very much like www.yext.com/directory.jsp level 1- www.game.com/admin level 2- www.baseball.com /www.football.com/www.golf.com etc. level 3- www.userid.baseball....

What are the pros and cons of a default URL with www or without www?

We need to default URL to unique name. If it is www then with no prefix or vice versa. So decision to be made is either stick with www or with no prefix. With no prefix cookie is set for all sub domains. What are other downsides for it? Or benefits? Basically we need this for OpenID as OpenID will make users look different if they came...

Reverse IP lookup with PHP

In PHP is there a function to do a reverse lookup on a domain name to find out how many websites are hosted on the particular shared hosting server that domain name is hosted on. Or, a way to do this with PHP? Now, I'm already aware of the online services that offer this. However, I want to write a script to do it myself. I just can't f...

Access an internal site through an external site.

I'm pretty sure the answer to this question is no, but I just wanted to get some feedback before I go down another path. Here is my scenario. I have two websites. Website 1 is an internal website that cannot be accessed outside of our domain. Website 2 is an external website that can be accessed outside of the domain, but has acces...

One site, multiple domains, better SEO

I have my personal website running on my main domain like myname.net I want to buy some domains that have great keywords to me, like: professionalrj.net and freelancebrasil.net (just examples). I don't want to redirect these new domains using 301 since I want to "score" with the keywords relevancy. I know that I can use canonical meta...

Javascript/Regex for finding just the root domain name without sub domains

I had a search and found lot's of similar regex examples, but not quite what I need. I want to be able to pass in the following urls and return the results: www.google.com returns google.com sub.domains.are.cool.google.com returns google.com doesntmatterhowlongasubdomainis.idont.wantit.google.com returns google.com sub.domain.google.c...

PHP REGEX: Get domain from URL

What I want I want to get from a URL the domain part so from http://example.com/ -> example.com Examples: +----------------------------------------------+-----------------------+ | input | output | +----------------------------------------------+-----------------------+ | http:...

Netbeans. "Entiry classes from database" and Postgresql domains

I am trying to create entity classes form database with Netbeans wizard "Entiry classes from database". But if the field type in database table is an a custom domain the type of field is set to "Serializable", but it should be String or Integer. Because domains are just wrappers around "normal" Postgresql datatypes. And if my table cont...

How can you get subdomain.site.com and www.site.com down to the domain name

In javascript is it possible to create a function that checks an url to find the domain name. EG: if these sites: www.site.co.uk www.subdomain.site.co.uk site.co.uk subdomain.site.co.uk were put into the function they would be returned as "site.co.uk". ...

How to enable custom URLs in Google Chrome?

Hello, for local development I'm running a local webserver with virtual hosts to manage multiple webprojects requiring their own URL. Normally I use URLs like myproject.com.local and the real project will be located at myproject.com. Everything works fine in Safari, IE or Firefox. But Google Chrome throws a 404. As far as I know they ha...

Recommended APIs for checking domain availability?

Does anyone have experience with the APIs of registrars like GoDaddy? The goal is to use Javascript to check the availability of domain names. Someone asked a related question on StackOverflow, but the answers focused on WHOIS. I'm hoping someone provides a more robust, JSON-based API for checking domain availability. It seems natura...

Objective C: Terminal output into NSString

Hello! I'm trying to execute "whois search domainname.tld". I'm currently using system("whois search domainname.tld"); however i need to get the output into a NSString variable to output to the user. How can i do this? ...