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 4099248
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T20:24:34+00:00 2026-05-20T20:24:34+00:00

Assuming a string like http://domain.com/aaaa/bbb/ccc/ddd I want to use a .htaccess file to get

  • 0

Assuming a string like http://domain.com/aaaa/bbb/ccc/ddd

I want to use a .htaccess file to get the last element, in this case ddd.

I am using:

RewriteRule (.*)/$ ?pt=$1 [L]

But it only works with a trailing slash.

  • 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-05-20T20:24:34+00:00Added an answer on May 20, 2026 at 8:24 pm

    That’s because your regex includes a trailing slash.

    Try:

    RewriteRule ([^/]+)/?$ ?pt=$1 [L]
    

    The question mark after the slash means “zero or one”. If you don’t want that behavior, change the regex accordingly.

    Edit:

    Because the rewrite directives will be re-run after a rewrite is done (at least in per-directory context), it is important to ensure that a rule will not be re-run after you have already achieved the desired rewrite. There are multiple ways to accomplish this goal, but one is:

    RewriteCond %{QUERY_STRING} !pt
    RewriteRule ([^/]+)/?$ ?pt=$1 [L]
    

    The point of the RewriteCond is to prevent the RewriteRule from being applied when there is already a query string with pt in it somewhere, which would be a clue that the rewrite has already happened. More complicated rules might require more or different RewriteCond directives.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Assuming a string like http://domain.com/aaaa/bbb/ccc/ddd/ I want to use a .htaccess file to get
Assuming sr is an IEnumerable<string> , I want to use code like this to
if I have a url string like http://www.google.com how can I convert that to
Assuming the input string +123-321+123 345 , using PHP's regex functions I would like
Assuming public class MyClass { public int ID {get; set; } public string Name
Assuming an XML like this: <my:Root xmlns:my=http://foo/bar> <my:FieldBasic>content</my:FieldBasic> <my:FieldComplex> <html xml:space=preserve xmlns=http://www.w3.org/1999/xhtml> <div><h1>content</h1></div> </html>
Assuming I have the following strings: string str1 = Hello World!; string str2 =
Assuming the message argument is a string, I have the following snippet: users.each do
Assuming I have a column called A and I want to check if A
Assuming you have only the URL to a file (hosted on the same server

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.