Questions tagged [tld]

TLD is an abbreviation for top-level domain.

The top-level domains (TLDs) are managed by registrars under agreement from ICANN (www.icann.org). There are several different types of TLDs:

  • gTLD - Generic top-level domains (.com, .net, .org ...)- Anybody can register these domains
  • ccTLD - Country code top-level domains (.uk, .us, .ly, .cc) - These domains normally have restrictions on their use, for example, only companies that operate in these countries may register them (.uk does not have this restriction, but .ie, Ireland, does)
  • sTLD - Sponsored top-level domains (.coop, .museum, .jobs) - These domains are for certain uses only. There are strict rules which must be met in order to register one of these domains.

See also http://icannwiki.com/GTLD for more details, including history and instructions for the proposal and registration process.

272 questions
4
votes
0 answers

Python suppress a particular output message

I am parsing URLs in Python using tldextract library. When I run it, it generates many FILELOCK messages that I want to suppress. I do not want to suppress any other stdout messages (I have many logging messages - informational that I want to see).…
user1717931
  • 2,419
  • 5
  • 29
  • 40
4
votes
2 answers

Using the '.localhost' TLD searches in browsers instead of showing the site associated with the address

According to RFC 2606 (1999) the TLD .localhost is reserved for use for testing locally. The goal is to configure a preview site to run locally using the TLD .localhost, e.g. http://example.localhost The problem is that when I use Chrome or Safari…
dotZak
  • 105
  • 2
  • 8
4
votes
6 answers

Whois list of Top Level Domain against their corresponding registrar

I'm trying to find a list of TLD's to their corresponding whois server, for example .com americanWhoisServer .net someOtherWhoisServer .au australianWhoisServer In the end i'm aiming for something like a Dictionary where the key is the TLD and the…
Daniel
  • 385
  • 1
  • 5
  • 6
4
votes
0 answers

Can't load JSTL in multi module maven project with embedded jetty

I have created a test framework for testing .jsp files and .tag files using embedded jetty. I'm starting Jetty server programmatically using Java API, adding servlet holder and wrapper test JSP and initializing the server passing the project's web…
susmit shukla
  • 213
  • 4
  • 14
4
votes
3 answers

Spring MVC - passing variables from one page to anther

I need help. I am working on a project where I have multiple pages and multiple forms; each page has one form. I just need to be able to pass values from one jsp to another. What should I do? I am new to Spring MVC. I am using spring 2.5.6. Here's…
Aravind Datta
  • 327
  • 4
  • 6
  • 17
4
votes
3 answers

Python URL splitting

I have a string like google.com in Python, which I would like split into two parts: google and .com. The problem is where I have a URL such as subdomain.google.com, which I would like to be split into subdomain.google and .com. How do I separate the…
q3d
  • 3,473
  • 8
  • 34
  • 39
3
votes
2 answers

htaccess mod_rewrite .tld to specific folder

I want to do the following, if possible, with htaccess. The webpage works this way, you get the index file via domain.de/de/start and the english version via domain.de/en/start. If a user visits domain.com I would like him to end up at…
Lukas Oppermann
  • 2,918
  • 6
  • 47
  • 62
3
votes
1 answer

Is there any way to whitelist .appspot.com so I can set a cookie on that domain in Firefox 6?

In order to test some stuff, I've been using the trick of setting a cookie on the .appspot.com domain, which allows me to share data between two different .appspot.com GAE apps. This has stopped working in Firefox 6, and a google person told…
Joshua Smith
  • 3,689
  • 4
  • 32
  • 45
3
votes
0 answers

Chrome thinks my site "looks fake" after code-level redirect to other country TLD

I've implemented a code level redirect when someone hits the wrong TLD. i.e. store1.example.com -> store1.example.ca I do a db query based on the subdomain hit to see which country that store is registered too and redirect to the correct TLD. Chrome…
Mohamed Ali
  • 53
  • 1
  • 6
3
votes
1 answer

jsp caching tag library

I want to cache some portions of my JSP page because it is heavy to render. The whole page cannot be cached as it contains user specific content, but most of it can. I thought the best solution would be to create a JSP cache tag. It seems there are…
Peter Szanto
  • 7,568
  • 2
  • 51
  • 53
3
votes
1 answer

Limit Domain Registration on WooCommerce

How to limit access to specific domains on WooCommerce registration for user email? I found this snippet of code that can do that, but it doesn't work on the WooCommerce Registration form for some reason. It works if I go to the WP-login page…
Tina
  • 295
  • 2
  • 15
3
votes
2 answers

Public Suffix List C# parser

Does anyone have Public Suffix List (getting real domain) parser in c#. It was available on code.google.com /p/domainname-parser/ (remove space before p in name) , however project has probably been removed from google code, since I cannot access…
user603483
  • 43
  • 6
3
votes
0 answers

Validate XML against a TLD (Tag Library Descriptors) file

I'm searching for a command-line program (running in Cygwin bash) which would validate XML files against a TLD description. I've looked at xmlstarlet and xmllint but don't find any option to validate against TLD files.
user3341592
  • 1,419
  • 1
  • 17
  • 36
3
votes
1 answer

Can iOS URL support unicode characters within top level domain?

I'm building an iOS app that takes urls as input. Unicode characters are valid for a tld but when I instantiate a valid URL that contains unicode characters NSURL returns nil. Is this even possible? swift eg. URL(string: "http://➡.ws/䨹")
quin
  • 276
  • 1
  • 9
3
votes
1 answer

How to use Wordpress Multisite with multiple TLDs

I'm trying to setup a Wordpress Multisite installation (it's basically for two countries AU and NZ) that shows different content depending on the URL (.com.au and .co.nz). I've setup the installation and it seems that by default Wordpress only…
PavKR
  • 1,591
  • 2
  • 11
  • 26
1 2
3
18 19