Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8983451
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T20:50:40+00:00 2026-06-15T20:50:40+00:00

How can I get the URL Path of the current site, but without the

  • 0

How can I get the URL Path of the current site, but without the last segment:

http://www.domain.com/first/second/last

I only need http://www.domain.com/first/second … with jQuery (or only JavaScript)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T20:50:41+00:00Added an answer on June 15, 2026 at 8:50 pm

    Using pop and URL api

    this assumes the URL is not likely to change

    I use document.URL since that is what is recommended

    const url = new URL("https://www.example.com/first/second/last"); // new URL(document.URL)
    let path = url.pathname.split("/");
    path.pop(); // remove the last
    url.pathname = path.join("/")
    console.log(url)

    Older answers: As requested by OP – with changes from comment

    const url = "http://www.example.com/first/second/last", // document.URL, 
        shortUrl=url.substring(0,url.lastIndexOf("/"));
    console.log(shortUrl)    

    Here is an alternative

    const url = new URL("http://www.example.com/first/second/last"),
          shortUrl = `${url.protocol}//${url.hostname}${url.pathname.slice(0,url.pathname.lastIndexOf("/"))}`
    
    console.log(shortUrl)
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to know that,how we can get the current url path (e.g. http://www.mywebsite.com/
How can I get the full/absolute URL (e.g. https://example.com/some/path ) in Django without the
Current url is http://myapp.appspot.com/something/<user-id> or http://127.0.0.1:8080/something/<user-id> How in my python code I can get
In javascript, how can I get the relative path of the current url? for
How do you get the current path (url) from within an asp.net mvc view?
I have a question: how to get the current path of the url. Let's
How can i get url parameter when open dialog ? Sample Text when dialog
How can I get the url of the active aspx page from the code
I am developing an app in which i can get Image from URL and
how can you get the server relative url of a file in a document

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.