up vote 1 down vote favorite
1
share [g+] share [fb]

What handles the disabling of the extension? Is it APACHE or the PHP install? How would one go about configuring the web server where the .php extension is not required? Is there an option that would make both www.example.com/page.php and www.example.com/page work as the URL?

link|improve this question

feedback

6 Answers

up vote 8 down vote accepted

It's URL rewriting through Apache: http://www.addedbytes.com/apache/url-rewriting-for-beginners/

link|improve this answer
feedback

Apache also has a setting called MultiViews that will serve domain.com/index.* as domain.com/index, domain.com/example.* as domain.com/example, etc.

I've occasionally run into issues where MultiViews beats out mod_rewrite rules, so I tend to turn it off.

link|improve this answer
1  
+1 MultiViews should definitely be turned off if you are to use mod_rewrite, otherwise you're guaranteed a headache. – mike Nov 3 '09 at 22:05
feedback

Check out some articles from A List Apart on this topic: You use Apache (in your case) to setup ReWriteRule's and then you have PHP parse the url to fetch the correct information. (again, in your case. You can do this with many languages and http servers)

http://www.alistapart.com/articles/succeed/

http://www.alistapart.com/articles/urls/

link|improve this answer
feedback

brianreavis is correct. Here's an example for your .htaccess file:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
link|improve this answer
feedback

I just throw it all at PHP and parse it however I want in there:

.htaccess

RewriteEngine On
RewriteRule !\.(js|ico|gif|jpg|png|css)$ @frontend.php
link|improve this answer
feedback

I use this in my .htaccess

<Files ~ "^[^.]+$">
ForceType application/x-httpd-php5
</Files>

That way I can remove all extensions (.php) from my files, and it will still work.

I use $_SERVER['PATH_INFO'] to retrieve the remainder of the path as parameters. E.g. /page/param1/param2 where page is an actual php file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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