How do I remove a PHP extension from a URL such that if the page is viewed with a *.PHP extension, it will give a 404 error?
-
I want to edit the URL of a link via Apache mod_rewrite module with .htaccess file. However, I want to give a 404 error if user tries to view the previous non-rewritten URL. So in summery, remove PHP, give 404 error if user tries to view the page as: http://example.com/home.php, it will give a 404 error. However, if user viewed http://example.com/home it wont give an error
-
Answer:
To remove the .php extension you will need a apache plugin called mod_rewrite this plugin change the route of your website. About the 404 error I don't exactly but i think can be done the same plugin. Check here the implementation http://stackoverflow.com/questions/4908122/removing-the-php-extension-with-mod-rewrite
Carlos Augusto at Quora Visit the source
Other answers
Simply use the .htacess to remove the .php extension from the url <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP_HOST} ^example\.com$ [NC] RewriteRule ^(.*)\.php$ http://example.com/$1 [L,R=301] </IfModule> As for the 404 error itself, I dont think its possible. Because when you always redirect home.php to home, how can you ever have home.php in the request?
Robin Thomas
Related Q & A:
- How can I remove a casset tape from my car player? It is a 2003 Hyundai Sonota. Does anyone else this problem?Best solution by Yahoo! Answers
- How do I remove a firewall to view a webcam?Best solution by Yahoo! Answers
- How can I remove a bumper cover from a Chevy Malibu?Best solution by Yahoo! Answers
- How do I remove a stock portfolio from my home page?Best solution by ca.answers.yahoo.com
- How do I fix a DNS error on a PSP?Best solution by wikihow.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.