• Does anyone know how to use mod_rewrite to make the paged URLs (next / previous) look good? They are still trashed right now, but all of the others look good.

Viewing 4 replies - 1 through 4 (of 4 total)
  • A start would be :
    RewriteEngine On
    RewriteBase /wp_root
    RewriteRule ^page/([0-9]+)$ /wp_root/index.php?paged=$1 [QSA]

    Works for yoursite.com/wp_root/page/2 instead of index.php?paged=2
    Except that it’s ok as long as you’re only requesting for more complicated query strings like ?category_name=linux&paged=2

    Thread Starter Anonymous

    ya that’s money … how about something like this?
    root/index.php?year=2004&monthnum=05&day=&name=&page=&paged=2

    Thread Starter Anonymous

    whoops..
    root/index.php?year=2004&monthnum=05&day=&name=&page=&paged=2
    damn scrollbar

    Thread Starter Anonymous

    for some reason because the variables aren’t defined in say day and name, etc – i am getting a problem, or the rewrite rule isnt working when i try to make one up

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘page nav urls’ is closed to new replies.