Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. # BEGIN WordPress
  2. <IfModule mod_rewrite.c>
  3. RewriteEngine On
  4. RewriteBase /
  5. RewriteRule ^index.php$ - [L]
  6. RewriteCond %{REQUEST_FILENAME} !-f
  7. RewriteCond %{REQUEST_FILENAME} !-d
  8. RewriteRule . /index.php [L]
  9. </IfModule>
  10. # END WordPress
  11.  
  12. <?php
  13. define('WP_USE_THEMES', true);
  14.  
  15. /** Loads the WordPress Environment and Template */
  16. require( dirname( __FILE__ ) . '/wordpress/wp-blog-header.php' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement