Guest User

Default WP .htaccess file

a guest
May 2nd, 2020
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. # BEGIN WordPress
  2. # The directives (lines) between `BEGIN WordPress` and `END WordPress` are
  3. # dynamically generated, and should only be modified via WordPress filters.
  4. # Any changes to the directives between these markers will be overwritten.
  5. <IfModule mod_rewrite.c>
  6. RewriteEngine On
  7. RewriteBase /test/
  8. RewriteRule ^index\.php$ - [L]
  9. RewriteCond %{REQUEST_FILENAME} !-f
  10. RewriteCond %{REQUEST_FILENAME} !-d
  11. RewriteRule . /test/index.php [L]
  12. </IfModule>
  13.  
  14. # End WordPress
Add Comment
Please, Sign In to add comment