An open API service indexing awesome lists of open source software.

https://github.com/pecuchet/wp-htaccess

htaccess boilerplate for wordpress
https://github.com/pecuchet/wp-htaccess

apache2 htaccess wordpress

Last synced: 5 days ago
JSON representation

htaccess boilerplate for wordpress

Awesome Lists containing this project

README

          

# WordPress htaccess boilerplate for Apache 2.4

See also:
- [Creare/WP-htaccess](https://github.com/Creare/WP-htaccess/blob/master/.htaccess)
- [roots/wp-h5bp-htaccess](https://github.com/roots/wp-h5bp-htaccess/blob/master/h5bp-htaccess.conf)

## Disabling access log for specific file types
```
# in your .htaccess
SetEnvIf Request_URI "\.(css|js|png|jpe?g|gif|svg|map|woff2|ico)(\?.*)?$" dontlog

# in httpd.conf or httpd-vhosts.conf
CustomLog ${APACHE_LOG_DIR}/access.log combined env=!dontlog
```