We Recommend

Pro Apache Pro Apache
In addition to installation, maintenance, and deployment, the book demonstrates how to configure Apache to use Perl, PHP, and Python as server-side scripting languages. And unlike other books on Apache, Pro Apache provides comprehensive information on both major revisions - 1.3 and 2.0 - of the software.


Posted By

m00min on 01/31/08


Tagged

wordpress apache


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

skywalker


Pretty permalinks on for Wordpress running on Apache


Published in: Apache 


Add this to an .htaccess file.


  1. <IfModule mod_rewrite.c>
  2. RewriteEngine On
  3. RewriteBase /designblog/
  4. RewriteCond %{REQUEST_FILENAME} !-f
  5. RewriteCond %{REQUEST_FILENAME} !-d
  6. RewriteRule . /designblog/index.php [L]
  7. </IfModule>

Report this snippet 

You need to login to post a comment.