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

  • Home
  • SEARCH
  • 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 4084536
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T18:27:09+00:00 2026-05-20T18:27:09+00:00

For my program I use dynamic URL rewriting with PHP: <IfModule mod_rewrite.c> RewriteEngine On

  • 0

For my program I use dynamic URL rewriting with PHP:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    #Rewrite the URI if there is no file or folder
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    #rewrite all to index.php
    RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

In PHP I then break down the URL in its different parts. For example http://myhost/foo/bar returns foo bar. The problem I have is if the program is not located in the root directory of the server, for example http://myhost/this/is/a/folder/hereistheprogram/foo/bar, because then the script returnes this is a folder hereistheprogram foo bar. Now have the problem that I can’t differentiate between the folders and the URL parameters.

  • 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-20T18:27:10+00:00Added an answer on May 20, 2026 at 6:27 pm

    You need to know what the path to the script file is. You can do that by either explicitly declaring the path prefix or by determining it automatically, for example:

    $basePath = dirname($_SERVER['SCRIPT_NAME']);
    

    Then you can use that prefix and strip it from the request URI path:

    if (substr($requestPath, 0, strlen($basePath)+1) === $basePath.'/') {
        $path = substr($requestPath, strlen($basePath));
    } else {
        $path = $requestPath;
    }
    

    By the way: It would be better if you don’t pass the request URI path explicitly to your index.php but retrieve it from $_SERVER['REQUEST_URI']:

    $_SERVER['REQUEST_URI_PATH'] = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
    $_SERVER['REQUEST_URI_QUERY'] = parse_url($_SERVER['REQUEST_URI'], PHP_URL_QUERY);
    

    And the corresponding mod_rewrite rule:

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php [L]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What program can I use to decompile a class file? Will I actually get
When I try opening a file it tries to use C:\Program Files\Common Files\Microsoft Shared\DevServer\9.0
My program will take arbitrary strings from the internet and use them for file
My current program need to use programatically create a XPathExpression instance to apply to
First a bit about the environment: We use a program called Clearview to manage
My program has to read files that use various encodings. They may be ANSI,
HyperTerminal is a program that you can use to connect to other computers, Telnet
I'd like to use a C# program to poll a gmail account and automatically
I need to use lists for my program and needed to decide if I
I have a program that I want to use as an autorun. I want

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.