We Recommend

Learning Perl Learning Perl
In this smooth, carefully paced course, a leading Perl trainer teaches you to program in the language that threatens to make C, sed, awk, and the Unix shell obsolete for many tasks. This book is the "official" guide for both formal (classroom) and informal learning. It is fully accessible to the novice programmer.


Posted By

cmslounge on 05/11/07


Tagged

wordpress htaccess rewrite


Versions (?)


Who likes this?

3 people have marked this snippet as a favorite

basicmagic
Mikker
jbo


Wordpress .htaccess generic code


Published in: Other 


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

Report this snippet 

You need to login to post a comment.