vote up 0 vote down star
1

I want to rewrite all my URLs to hide the .php extension. A general rule that adds .php to all URLs obviously won't do, so I want this rule to be conditional on the fact that

  • There is no file nor directory that matches the URL
  • After adding the .php, there is a match

I've arrived at these rewriting rules:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*)$ $1.php [L]

The first two take care of checking whether the request can be satisfied without rewriting (so for images and other non-PHP content). With the third rule I'd like to check if adding .php would make the request valid (if not, we'll try something else further down the rewrite rules, or return 404).

The RewriteCond %{REQUEST_FILENAME}.php -f part never seems to match though. Any suggestions?

EDIT

The rewrite log is containing these entries:

(4) RewriteCond: input='/contact' pattern='!-f' => matched 
(4) RewriteCond: input='/contact' pattern='!-d' => matched 
(4) RewriteCond: input='/contact.php' pattern='-f' => not-matched

I find it strange that it's trying to match /contact, and not /var/www/mysite/htdocs/contact (At least that's what I'd expect when reading the docs on REQUEST_FILENAME). Apparently REQUEST_FILENAME is only what I expect when there is an actual match?

EDIT2

Thanks to Thomas for the answer: use %{DOCUMENT_ROOT} instead to manually compose the complete filename of the as yet unfound PHP file.

I've also thrown in an extra '/?' in the regexp to remove an optional / at the end of the URL, now all of /contact, /contact/ and /contact.php all refer to /contact.php:

RewriteCond %{DOCUMENT_ROOT}$1 !-f
RewriteCond %{DOCUMENT_ROOT}$1 !-d
RewriteCond %{DOCUMENT_ROOT}$1\.php -f
RewriteRule ^(.*?)/?$ $1.php [L]
flag

1 Answer

vote up 0 vote down check

I'm not so sure about using REQUEST_FILENAME. REQUEST_FILENAME should point to the full path of the matched file, but you are actually checking it's existence.

I would try something like:

RewriteCond  %{DOCUMENT_ROOT}/$1         !-f
RewriteCond  %{DOCUMENT_ROOT}/$1\.php    -f
RewriteRule  ^(.*)$                      $1.php [L]
link|flag
Yes from the RewriteLog it seems that REQUEST_FILENAME only gets populated with the 'full local filesystem path' the docs promise you if it actually exists. Your solution seems to solve this problem, I'll try it out! – Wim Nov 4 at 10:41
Maybe without the / between ${DOCUMENT_ROOT} and $1 ... – Tomas Nov 4 at 10:48
That's it, thanks! I've also thrown in a '/?' in the regexp to remove an optional / at the end of the URL, now all of /contact, /contact/ and /contact.php all refer to /contact.php: RewriteCond %{DOCUMENT_ROOT}$1 !-f RewriteCond %{DOCUMENT_ROOT}$1 !-d RewriteCond %{DOCUMENT_ROOT}$1\.php -f RewriteRule ^(.*?)/?$ $1.php [L] – Wim Nov 4 at 12:32
Duh dumping code in comments really doesn't work... Anyone know a better way to do this? – Wim Nov 4 at 12:39
No. You could add the final answer to the question for clarity... Thanks. – Tomas Nov 4 at 13:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.