ik80
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP suggests same htaccess for diff permalink types! Bug??thanks Otto42. Gonna check this specs with the server admin…
Forum: Fixing WordPress
In reply to: WP suggests same htaccess for diff permalink types! Bug??what are the specifications to get pretty permalinks working besides having mod_rewrite enabled (which is ok on my server)?
mod_rewrite permalinks require Apache’s mod_rewrite module; people running WordPress on other server environments cannot use them. See Pretty Permalinks for more info.
(source)
Any permalink i try without /index.php/ (the almost pretty permalink) doesn’t work… HELP please!!!
Forum: Fixing WordPress
In reply to: WP suggests same htaccess for diff permalink types! Bug??thanks people, so way cant i use any decent permalink structure (without /index.php/ ?)
gonna read this WP_Rewrite…Forum: Fixing WordPress
In reply to: permalink without /index.php/archivei’m marking this topic as solved (Adam’s answer is correct for the title of this message). i’ll create a new topic with this other problem…
Forum: Fixing WordPress
In reply to: permalink without /index.php/archiveThanks Adam, i read everything there but my problem still persists.
Independent on my permalink choice, WordPress always suggests the same htaccess configuration:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /blog/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /blog/index.php [L] </IfModule> # END WordPressDidn’t this need to change to something like:
RewriteRule ^archives/([0-9]{4})?/?([0-9]{1,2})?/?([0-9]{1,2})?/?([_0-9a-z-]+)?/?([0-9]+)?/?$ /blog/index.php?year=$1&monthnum=$2&day=$3&name=$4&page=$5 [QSA]I’m running 2.3.1 on apache…