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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T21:13:54+00:00 2026-05-31T21:13:54+00:00

In php I have a script, that I use mod_rewrite to redirect all calls

  • 0

In php I have a script, that I use mod_rewrite to redirect all calls in a particular url. For example the mod rewrite rule is something like:

RewriteCond %{DOCUMENT_ROOT}/articles/$1  !-f
RewriteRule ^/articles/(.+)$ /articles/index.php [L]

Then my index.php script splits the url into its components and based on the components performs a particular function.

My problem is figuring out how to make the script 404 when people add additional subfolders to the URL. For example, if I have a url like this:

http://www.example.com/part/blue-widget/

My script will show the blue-widget page. Now if someone changes the url to read:

http://www.example.com/part/blue-widget/another_dir/

The script will still show the blue-widget page using this new URL. What I would like is for the script to instead issue a 404 error. I could have each function check for the amount of components in the URL and if its the right amount, show the content, otherwise issue a 404, but am not sure this is the best way to do it.

  • 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-31T21:13:55+00:00Added an answer on May 31, 2026 at 9:13 pm

    Depends on how the code which loads each page works, surely? eg, If each folder is a parameter in a function (like a lot of frameworks), you could compare the amount of folders against the amount of input parameters the function has?

    EDIT: Will something like this do?

    If you have a set of known parts, you could do:

    switch ($part) {
        case 'blue-widget':
            // Show blue widget
        break;
        case 'red-widget':
            // Show redwidget
        break;
        case 'yellow-widget':
            // Show yellow widget
        break;
        default:
           header('HTTP/1.1 301 Moved Permanently');
           header("Location: xxx");
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an index.php script that I use as a post-commit URL on a
I have PHP script that fetch messages from a mailbox. I use the imap_search
I have a script in php that writes XML. I use an ajax call
I have php script that creates a temporary watermark image for users that are
I'm clueless when it comes to PHP and have a script that emails the
I have a script that has PHP on it, and a link that goes
I have a PHP script that executes a .bat file using system(cmd /c C:\dir\file.bat);
I have a php script that backup my table in .sql format and I
I have a PHP script that uses CURL to fetch a remote page and
I have a php script that is run once a minute. The script runs

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.