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

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 to a directry that WordPress resides, the url gets changed to http://.../mytext.txt/  which has a trailing slash. Is there a way to avoid the slash to be added at the end?

  • Answer:

    Okay, found it. In wp-includes/canonical.php, in #430, wp_redirect($redirect_url, 301); This was the one causing the trailing slash. I found this by reading the Apache access log and it had an odd item that says 301 with mytext.txt at the end which indicates the page is redirected. Several lines before the above line of wp_redirect(), there is, $redirect_url = apply_filters('redirect_canonical', $redirect_url, $requested_url); With the filter, assigining false to $redirect_url works when the $redirect_url contains the subject url to modify.

Anonymous at Quora Visit the source

Was this solution helpful to you?

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.