Mod_rewrite in Wordpress

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • serch
    Confirmed User
    • Sep 2006
    • 214

    #1

    Mod_rewrite in Wordpress

    Hi all!
    I've a question i've been looking in google, but i don't know how to apply mod_rewrite to my wordpress.
    Thanks, and greetinGs
  • baX
    Too lazy to set a custom title
    • Mar 2006
    • 17911

    #2
    Bumping this question.
    I need the answer to.

    Comment

    • naughty_wld
      Confirmed User
      • Jun 2006
      • 287

      #3
      wp-admin.php
      >options
      >>permalinks...

      or/and use this standard wordpress .htaccess (in your website's root:
      Code:
      <IfModule mod_rewrite.c>
      RewriteEngine On
      RewriteBase /
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteRule . /index.php [L]
      </IfModule>
      Makes it: http://<yourdomain>/2006/10/07/sample-post/
      ICQ: 256-323-087
      :food-smil

      Comment

      • smashface
        Confirmed User
        • Sep 2002
        • 991

        #4
        And make your htaccess file writable

        Comment

        • serch
          Confirmed User
          • Sep 2006
          • 214

          #5
          Thank you very much!!
          I was looking for this!

          Comment

          • baX
            Too lazy to set a custom title
            • Mar 2006
            • 17911

            #6
            that naughty

            Comment

            Working...