Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 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.  
  13. Another crucial file in this directory is wp-config.php. This handles WordPress’ base configuration, and includes your MySQL settings, secret keys, and database table prefix. This is what your database settings should look like:
  14. // ** MySQL settings - You can get this info from your web host ** //
  15. /** The name of the database for WordPress */
  16. define('DB_NAME', 'notarealname');
  17. /** MySQL database username */
  18. define('DB_USER', 'notarealuser');
  19. /** MySQL database password */
  20. define('DB_PASSWORD', 'notarealpassword');
  21. /** MySQL hostname */
  22. define('DB_HOST', 'localhost');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement