Skip to main content

Link Management

The Hurco frontend features an automated link detection system. This system determines whether a link is internal or external based on its structure and assigns the appropriate browser behavior automatically.


The CMS differentiates between links to ensure a seamless user experience:

  • Internal Links: These use target="_self" and open in the same tab. The system automatically prepends the base URL (e.g., https://www.hurco.com) if a relative path is used.
  • External Links: These use target="_blank" and open in a new tab.
Pro Tip: Forcing a New Tab

If you want an internal page to open in a new tab, simply enter the full URL including https://.

  • /technology/winmax opens in the same tab.
  • https://www.hurco.com/technology/winmax opens in a new tab.

The system categorizes links based on their starting characters:

Link TypeStarts With...Behavior
Externalhttp:// or https://Opens in New Tab
Internal/ or #Opens in Same Tab
Actionmailto: or tel:Opens in Same Tab (Default App)
FallbackAny other characterTreated as Internal

Visual Examples

CTA URL Example

  • URL: #job-listing
  • Result: Internal link. It will navigate the user to the section with the ID job-listing on the current page.

2. Relative Paths

Internal Path Example

  • URL: /resources
  • Result: Internal link. It will open https://www.hurco.com/resources in the same tab.

3. Absolute URLs

External URL Example

  • URL: https://support.hurco.com/
  • Result: External link. Because it includes the https:// protocol, it will open in a new tab.