You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567 |
- RewriteEngine on
- # Don't rewrite files or directories
- RewriteCond %{REQUEST_FILENAME} -f [OR]
- RewriteCond %{REQUEST_FILENAME} -d
- RewriteRule ^ - [L]
- # Rewrite everything else to index.html to allow html5 state links
- RewriteRule ^ index.html [L]
|