a | b/web/.htaccess | ||
---|---|---|---|
1 | RewriteEngine On |
||
2 | |||
3 | # If the request doesn't directly map to an existing file or directory, append .html |
||
4 | RewriteCond %{REQUEST_FILENAME} !-f |
||
5 | RewriteCond %{REQUEST_FILENAME} !-d |
||
6 | RewriteRule ^([^/.]+)$ $1.html [L] |