Reserved words/params list?
-
I have an otherwise working installation and am writing a new theme. I have friendly urls set to /%category%/%postname%/ and .htaccess setup. Everything works as I would expect, including links to pages, and pages with custom templates assigned.
If I pass query string params in the url, they work just fine:
/mypage/?foo=bar
The minute I pass something like /mypage/?m=1, or ?year=2010, I get a 404 page instead. ?year=2009 returns the page.. ?year=2008 returns a 404.
My htaccess is nothing more than:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase /~claco/wordpress/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.php [L] </IfModule>
What’s going on here? Is there a set of reserved query string param names that influence the loading of the pages content entry, which causes the 404?
I’m thoroughly confused.
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Reserved words/params list?’ is closed to new replies.