Pretty permalinks on for Wordpress running on Apache


/ Published in: Apache
Save to your folder(s)

Add this to an .htaccess file.


Copy this code and paste it in your HTML
  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


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.