Skip to content

Instantly share code, notes, and snippets.

@cakephp-tutorial
Created February 26, 2016 23:37
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 cakephp-tutorial/01281372c75cf6eff2df to your computer and use it in GitHub Desktop.
Save cakephp-tutorial/01281372c75cf6eff2df to your computer and use it in GitHub Desktop.
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^blog/(.*)$ blog/$1 [L]
RewriteRule ^wp-content/(.*)$ blog/$1 [L]
RewriteRule ^blog/wp-admin$ blog/wp-admin/ [L]
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment