# Apache .htaccess for PukiWiki # # Copyright # 2002-2020 PukiWiki Development Team # 2001 Originally written by yu-ji # License: GPL v2 or (at your option) any later version # # NOTE: Correct permission of this file 644(or 604) ## Access control by Require directive ## needs 'AllowOverride Limit' at httpd.conf # Prohibit direct access to .htaccess, .htpasswd or others # (If it's not set by default) # # Require all denied # # Prohibit direct access Require all denied ## Authentication to this directory with basic-auth ## needs 'AllowOverride AuthConfig' at httpd.conf #AuthType Basic #AuthName "Authentication required" #AuthUserFile /path/to/.htpasswd #AuthGroupFile /dev/null #Require valid-user ## Using zlib.output_compression per directory (via .htaccess) ## needs 'AllowOverride Options' at httpd.conf ## ## NOTE: ## Define PKWK_ZLIB_LOADABLE_MODULE somewhere if you are using ## PHP extension as loadable module (especially FreeBSD ports) ## (See BugTrack/738 for detail) #php_flag zlib.output_compression On