Skip to content

Instantly share code, notes, and snippets.

@rpowis
Created August 29, 2013 15:30
Show Gist options
  • Save rpowis/6379585 to your computer and use it in GitHub Desktop.
Save rpowis/6379585 to your computer and use it in GitHub Desktop.
Hash URL rewrite in .htaccess From `/articles/fragment` to `/articles.html#fragment`
Options +FollowSymlinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !articles\.html [NC]
RewriteCond %{REQUEST_URI} ^/articles/([^/]+)/? [NC]
RewriteRule .* /articles.html#%1 [R,NE,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment