How to remove extension and force trailing slash with .htaccess?

Let’s learn how to remove extension and force trailing slash with .htaccess. The most accurate or helpful solution is served by Stack Overflow.

There are ten answers to this question.

Best solution

htaccess code to remove extension AND add+force trailing slash?

I'm trying to put together some htaccess code that will turn example.com/filename.php into example.com/filename/ (and force the slash) - I've tried varous approaches, but each hasn't worked quite right, from 500 errors on subfolders to issues with the trailing slash, etc... Please help!

Answer:

Try this: RewriteCond %{THE_REQUEST} ^GET\ /[^?\s]+\.php RewriteRule (.*)\.php$ /$1/ [L,R=301] RewriteRule...

Read more

Jono Alderson at Stack Overflow Mark as irrelevant Undo

Other solutions

Remove Trailing Slash from WordPress URL? (The site also don't have www)

I need help as I am confused a lot with .htaccess Some months back, I removed WWW from the URL of my domain name using following .htaccess lines: RewriteCond %{HTTP_HOST} !^example.com$ [NC] RewriteRule ^(.*)$ http://example.com/$1 [L,R=301] Now, I also...

Answer:

Add the following code to the .htaccess. If there are any issues let me know by posting here. #get rid...

Read more

Pali Madra at Quora Mark as irrelevant Undo

htaccess multi-domain redirect issues

I have .htaccess rewrite/redirect problems. What makes this more frustrating is that it is such a simple situation. I am doing a favour for a friend, the kind of favour that you soon wish you'd never got involved with and left for a professional to sort...

Answer:

If you just want to match the root only, then you want RewriteRule ^$ en/ [R]. You don't even need the...

Read more

The Discredited Ape at Ask.Metafilter.Com Mark as irrelevant Undo

In a force-extension graph why is the extension plotted on the x-axis and the force on the y-axis?

Logically, the extension of an object (spring,wire,etc.) is dependent on the force applied to it. Therefore, in a force against extension graph, the force should be plotted on the x-axis (being the independent variable) and the extension on the y-axis...

Answer:

In an actual experiment, either F or x could be the independent variable depending on how you set up...

Read more

Mark Barton at Quora Mark as irrelevant Undo

What are your thoughts on the U.S. Air Force ordering a cadet to remove a biblical quote from his whiteboard?

From Air Force Academy orders cadet to remove Bible verse What's going on at Air Force Academy? God's word vs. Pentagon's word The Air Force Academy ordered a cadet to remove a Bible verse March 12, 2014. The cadet wrote the passage from Galatians 2...

Answer:

The Air Force Academy has been involved in a heated dispute over religious proselytizing by fundamentalist...

Read more

Barry Hampe at Quora Mark as irrelevant Undo

WordPress Plugin Development: How can I avoid the trailing slash to be added with RewriteRule?

<IfModule mod_rewrite.c> RewriteEngine On RewriteRule \Qmytext.txt\E\?? index.php [L,QSA] </IfModule> If I add this rule to a regular php directory, the url, http://.../mytext.txt will load the index.php. However, if I add this rule...

Answer:

Okay, found it. In wp-includes/canonical.php, in #430, wp_redirect($redirect_url, 301); This was the...

Read more

Anonymous at Quora Mark as irrelevant Undo

How can I force a Chrome extension pop-up to open programmatically, rather than by clicking the extension icon?

After developing a chrome extension that opens in a pop up, can i force the pop up open from the code instead of clicking the extension icon?

Answer:

Open chrome://extensions , go to the bottom of the page ("End" key will help), press link...

Read more

Alexander Phoenix at Quora Mark as irrelevant Undo

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...

Answer:

To remove the .php extension you will need a apache plugin called mod_rewrite this plugin change the...

Read more

Carlos Augusto at Quora Mark as irrelevant Undo

Using .htaccess want to change the urls of my site from .php extension to .html?

using .htaccess file i am able to change the www.domain/index.php to www.domain/index.html using the following code: Options +FollowSymlinks RewriteEngine On RewriteBase / RewriteRule ^(.*)\.html$ $1.php using this code if i give the url as www.domain...

Answer:

If you edit the hyperlinks to say .html, this is what they should show. Better is to use the : AddType...

Read more

Anil Kumar at Yahoo! Answers Mark as irrelevant Undo

How do I remove the armrest extension? And a Sirius radio question.?

I just got a good deal on a WRX that has the armrest extension which unfortunately gets in the way of shifting. So my first question is, how do I remove this extension? And will I need another armrest cover? The cover on the extension has the slot in...

Answer:

I'M NOT SURE ABOUT THE ARM REST EXTENSION, BUT I BELIEVE IF YOU REMOVE IT YOU WILL HAVE TO ORDER A REGULAR...

Read more

Jose at Yahoo! Answers Mark as irrelevant Undo

Related Q & A:

Just Added Q & A:

Find solution

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.