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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T11:15:06+00:00 2026-05-31T11:15:06+00:00

I’m trying to rewrite URLs as follows: www.example.com/module-name(/) => handler.php?module=module-name www.example.com/module-name/list/of/arguments(/) => handler.php?module=module-name&args=list/of/arguments (which

  • 0

I’m trying to rewrite URLs as follows:

  • http://www.example.com/module-name(/) => handler.php?module=module-name
  • http://www.example.com/module-name/list/of/arguments(/) => handler.php?module=module-name&args=list/of/arguments (which I explode later in the script)

If module-name is missing or not allowed, it loads the home page of the website. No problems here.
The problem is that mod_rewrite isn’t working as it should. I wrote these rewrite rules…

RewriteEngine On

RewriteRule ^([^/]*)/?$     handler.php?module=$1
RewriteRule ^([^/]+)/(.+)/?$    handler.php?module=$1&args=$2

…but instead of passing module-name as module to the handler, the rewrite engine passes the name of the script itself, handler.php. I tried with different regex in the last two days, but the result is always the same. I don’t know what to do anymore!

The rewrite rules are inside an .htaccess, placed in the document root (together with handler.php), and I’m running xampp on an Ubuntu 11.10 64-bit machine.

Thanks in advance!

  • 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-31T11:15:07+00:00Added an answer on May 31, 2026 at 11:15 am

    Yep, after rewrite occurs, it goes to next cycle instead of existing immediately as you would expect.

    You need to alter your rule (or add separate condition) to ignore requests to handler.php file. For example:

    RewriteRule ^(?!handler\.php)([^/]*)/?$ handler.php?module=$1 [L]
    RewriteRule ^(?!handler\.php)([^/]+)/(.+)/?$ handler.php?module=$1&args=$2 [L]
    

    or with extra separate condition:

    RewriteCond %{REQUEST_URI} !/handler\.php$
    RewriteRule ^([^/]*)/?$ handler.php?module=$1 [L]
    
    RewriteCond %{REQUEST_URI} !/handler\.php$
    RewriteRule ^([^/]+)/(.+)/?$ handler.php?module=$1&args=$2 [L]
    

    or even like that:

    # do not touch requests to handler.php
    RewriteRule ^handler\.php$ - [L]
    
    # our rewrite rules
    RewriteRule ^([^/]*)/?$ handler.php?module=$1 [L]
    RewriteRule ^([^/]+)/(.+)/?$ handler.php?module=$1&args=$2 [L]
    

    You can also go even this way (it really depends on your rewriting logic)

    # do not do anything for requests to existing files
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule .+ - [L]
    
    # our rewrite rules
    RewriteRule ^([^/]*)/?$ handler.php?module=$1 [L]
    RewriteRule ^([^/]+)/(.+)/?$ handler.php?module=$1&args=$2 [L]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I'm trying to create an if statement in PHP that prevents a single post
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
I want to count how many characters a certain string has in PHP, but
I would like to count the length of a string with PHP. The string

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.