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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T10:14:17+00:00 2026-06-11T10:14:17+00:00

I am trying to write a rewrite rule to change path slugs to query

  • 0

I am trying to write a rewrite rule to change path slugs to query parameters. It is for a web service, and should only rewrite this rule if the host starts with api. There are two slugs that I am trying to capture and rewrite. The first is optional and is a version (i.e. v1.2) and the second is the service domain (i.e. customers, transactions, etc.).

http://api.domain.com/v2.5/customers should rewrite to ?version=2.5&domain=customers

I also want to support a default version so that

http://api.domain.com/customers should rewrite to ?version=&domain=customers

Here is what my .htaccess file looks like:

RewriteEngine On
RewriteBase /

RewriteCond %{HTTP_HOST} ^api\..*
RewriteRule ^v([\d\.]*)?\/?([^\/]*)$ ?version=$1&domain=$2

The first example above works fine, but I can’t get the default version path to work. I have tried a ton of different things. I thought starting with ^.*v would help, but it didn’t. Anybody know how to make it match when you don’t know the starting characters?

  • 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-11T10:14:18+00:00Added an answer on June 11, 2026 at 10:14 am

    Try:

    RewriteCond %{HTTP_HOST} ^api\..*
    RewriteCond %{QUERY_STRING} !version=
    RewriteRule ^(v([\d\.]*))?\/?([^\/]*)$ /?version=$2&domain=$3 [L]
    

    This makes the /v part optional:

    • /v2.5/foo -> /?version=2.5&domain=foo
    • /foo -> /?version=&domain=foo
    • /v/foo -> /?version=&domain=foo
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am stuck trying to write a rewrite rule for my htaccess file which
I'm trying to write a rewrite rule but I've some serious problems with forwarding
I'm trying to write a rewrite rule in my .htaccess file but not sure
I am trying to write this rewrite code and it just is not working
I'm trying to write a simple .htaccess rule to change https://webxxx.example.net/~test/id/123 to https://webxxx.example.net/~test/show.php?id=123 But
Trying to write app for service technicians that will display open service calls within
I am trying to write the following query on postgresql: select name, author_id, count(1),
I'm trying to write an .htaccess rule to redirect to a script, which further
I'm trying to write URLs inside my Web Applications both In- and Outbound using
I am trying to write RewriteRule to redirect www.myweb.com/download/blabla.zip to > www.myweb.com/download/download.php?filedownload=blabla.zip this is

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.