Skip to content

Instantly share code, notes, and snippets.

@vanpariyar
Created March 29, 2019 12:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vanpariyar/6e806a0bcfa3400a2a1c06f6039c5a97 to your computer and use it in GitHub Desktop.
Save vanpariyar/6e806a0bcfa3400a2a1c06f6039c5a97 to your computer and use it in GitHub Desktop.
The .htaccess file for local wordpress installation.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /LocalSetupFolder/
#link will be localhost/LocalSetupFolder/wp-admin
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /LocalSetupFolder/index.php [L]
</IfModule>
# END WordPress
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment