Opened 18 months ago
Last modified 18 months ago
#19688 new defect (bug)
Using pathinfo permalinks in a subdirectory causes some 404's — at Version 3
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | Awaiting Review |
| Component: | Permalinks | Version: | 3.3 |
| Severity: | normal | Keywords: | |
| Cc: | mikeschinkel@… |
Description (last modified by SergeyBiryukov)
Due to circumstances beyond my control, I have a Wordpress site that must be installed to a subfolder named "s". I also must use pathinfo type permalinks - thus a page with a slug of store-locator would have the url /s/index.php/store-locator. Unfortunately this results in a 404, but other pages on the site work properly.
I tracked this down, and what I found is that code in class_wp->parse_request is causing this - particularly the code starting around line 166ish in version 3.3. The lines in particular that mess things up are these three:
$pathinfo = trim($pathinfo, '/');
$pathinfo = preg_replace("|^$home_path|", '', $pathinfo);
$pathinfo = trim($pathinfo, '/');
Coming into these lines of code, $pathinfo is /store-locator/, but after those three lines of code $pathinfo is tore-locator (the leading s is missing). This is because $home_path comes from home_url() which strips trailing slashes. The code right before this block further strips $home_path down to just the subdirectory portion, which in my case is just "s". Then the preg_replace fires and the leading s on the path is lost.
Temporarily, I added the following line before the three lines above and my problems went away:
$home_path .= "/";
Obviously this only works in my particular situation, and I'd like to be able to run vanilla Wordpress, but I can't find any combination of settings that will preserve my required permalink structure and still work. If there's a configuration combination that I'm missing, I'd be very happy, otherwise, feel free to contact me if you would like more info or if I can help in any way.
Change History (3)
comment:1
follow-up:
↓ 2
mikeschinkel
— 18 months ago
- Cc mikeschinkel@… added
comment:2
in reply to:
↑ 1
mose9634
— 18 months ago
Replying to mikeschinkel:
What is /store-locator/, a $post_type=='page', or something else? I'm wondering if this wasn't instead added by a plugin?
No plugins involved here - this is just a normal page. In fact, if I take a "working" page and update the permalink to start with the letter s, that page begins to 404 as well.
Some more information:
Permalinks are set to custom with a format of /index.php/%year%/%monthnum%/%postname%/ and .htaccess is empty. Both the Wordpress Address and the Site address are set to http://domain.com/s (I can't hand out the real URL due to contractual obligations, unfortunately). Note that I've tried saving the Wordpress and Site addresses with a trailing slash, but those are stripped out when things are saved.
comment:3
SergeyBiryukov
— 18 months ago
- Description modified (diff)
What is /store-locator/, a $post_type=='page', or something else? I'm wondering if this wasn't instead added by a plugin?