Advertisement
Guest User

Untitled

a guest
Oct 17th, 2012
637
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. # BEGIN WordPress
  2. <IfModule mod_rewrite.c>
  3. RewriteEngine On
  4. RewriteBase /
  5. RewriteRule ^cakephp(/(.*))?$ cakephp/app/webroot/$1 [QSA,L]
  6. RewriteRule ^index\.php$ - [L]
  7.  
  8. RewriteCond %{REQUEST_FILENAME} !-f
  9. RewriteCond %{REQUEST_FILENAME} !-d
  10. RewriteRule . /index.php [L]
  11. </IfModule>
  12.  
  13. # END WordPress
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement