Jump to content

Removing file extensions


JonnoTheDev

Recommended Posts

Just taken on a site that has a rewrite rule in place to remove & redirect .php extensions. i.e /about.php will become /about.

However, there are other rules in place and I have just noticed that if the url parameter doesn't match the rewrite condition a 501 Internal Server Error is thrown as opposed to a 404.

It is definately the rule that removes the .php that is causing the issue as commenting it out solves the issue, however this rule must be left in place.

 

RewriteEngine On
RewriteBase /

RewriteRule ^archive/([A-Z]{1})$ archive.php?letter=$1 [L]
RewriteRule ^page/([0-9]+)$ page.php?id=$1 [L]

# Remove .php extension
RewriteCond %{THE_REQUEST} ^GET\ (.*)\.php\ HTTP
RewriteRule (.*)\.php$ $1 [R=301]

RewriteCond %{REQUEST_FILENAME}.php -f
RewriteCond %{REQUEST_URI} !/$
RewriteRule (.*) $1\.php [L]

ErrorDocument 404 /missing
ErrorDocument 403 http://www.disney.com

 

Ok, so if the URL is http://www.foobar.com/page/1 then it works fine. Same for removing the .php extension http://www.foobar.com/about.php will become http://www.foobar.com/about. However if I try to use an invalid URL (on an existing mod rewrite rule) to test a 404 i.e http://www.foobar.com/archive/123 then I will get a 500 Internal server error.

 

Any ideas? Mod Rewrite not really my strongest area for debugging.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.