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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T21:12:05+00:00 2026-05-26T21:12:05+00:00

I have the following code: RewriteCond %{HTTP_HOST} ^m\.domain\.com?$ RewriteRule ^ http://domain.com/ipad%{REQUEST_URI} [L,P] So my

  • 0

I have the following code:

RewriteCond %{HTTP_HOST} ^m\.domain\.com?$
RewriteRule ^ http://domain.com/ipad%{REQUEST_URI} [L,P]

So my subdomain, http://m.domain.com is really pulling from http://domain.com/ipad/

Everything works fine if I type in: http://m.domain.com/shop-name/ it works perfectly. But when I leave out the trailing slash and type in http://m.domain.com/shop-name it redirects to http://domain.com/ipad/shop-name/ which shouldn’t happen, no one should see the ipad directory.

Does anyone know how I can fix this?

Thank you!

  • 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-26T21:12:05+00:00Added an answer on May 26, 2026 at 9:12 pm

    This might be because mod_dir is processing the request internally. When you access http://m.domain.com/shop-name and then it gets rewritten to http://domain.com/ipad/shop-name, mod_dir 302 redirects the browser to http://domain.com/ipad/shop-name/.

    You can try handling the trailing slash in your RewriteRule. Probably a cleaner way of doing this, but something along the lines of:

    RewriteCond %{HTTP_HOST} ^m\.domain\.com?$
    # Has trailing slash in request, don't need to append one in the RewriteRule
    RewriteCond %{THE_REQUEST} ./\ HTTP/1\.[01]$
    RewriteRule ^ http://domain.com/ipad%{REQUEST_URI} [L,P]
    
    RewriteCond %{HTTP_HOST} ^m\.domain\.com?$
    # Missing trailing slash in request
    RewriteCond %{THE_REQUEST} [^/]\ HTTP/1\.[01]$
    # Request doesn't end with one of these extensions, 301 redirect to include trailing slash
    RewriteCond %{REQUEST_FILENAME} !\.(php|html?|jpg|gif)$
    RewriteRule . http://m.domain.com%{REQUEST_URI}/ [R=301]
    

    EDIT: edited to address the 301 redirect of missing trailing slash

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

Sidebar

Related Questions

I currently have the following code: RewriteCond %{REQUEST_URI} !assets/ RewriteCond %{REQUEST_URI} !uploads/ RewriteRule ^([a-z|0-9_&;=-]+)/([a-z|0-9_&;=-]+)
I have written the following rules in .htaccess RewriteCond %{HTTP_HOST} ^([^\.]+)\.domain\.com RewriteCond %1 !^www$
I have found some very useful code: RewriteEngine On RewriteCond %{HTTP_HOST} ^www.example.com$ [NC] RewriteRule
I have the following code in my htaccess file: RewriteEngine On RewriteCond %{HTTP_HOST} !^www.example.com$
I have the following code for my .htaccess file that I've picked up from
I have following code import sys from ctypes import * from ctypes.util import find_library
I have following dynamic URL http://foo.mydomain.com and I have following in my .htaccess file
I have a domain say http://www.testexample.com . When I login to http://www.testexample.com and come
I have the following code in my .htaccess: RewriteEngine On RewriteBase / RewriteRule ^index\.php$
I have PHP source code of http://www.sitename.com . This site is located on Windows

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.