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
Related Q & A:
- How can I get custom fields in wordpress?Best solution by Stack Overflow
- How can I display older custom post outside the loop in Wordpress?Best solution by Quora
- How can I be added to messenger on the computer?Best solution by Yahoo! Answers
- How can I have Yahoo music plugin in my Yahoo messenger?Best solution by Yahoo! Answers
- How can I avoid getting tired while I study?Best solution by Yahoo! Answers
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.