Skip to content

Instantly share code, notes, and snippets.

@cesc1989
Created May 26, 2015 14:56
Show Gist options
  • Save cesc1989/82bee0225c20d04d8778 to your computer and use it in GitHub Desktop.
Save cesc1989/82bee0225c20d04d8778 to your computer and use it in GitHub Desktop.
Configuración del .htaccess para los Permalinks en WordPress
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
@cesc1989
Copy link
Author

Adicional, si no funciona lo anterior, revisar: http://codex.wordpress.org/Using_Permalinks#Fixing_Other_Issues

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment