File: sample.htaccess

package info (click to toggle)
b2evolution 0.9.2-3%2Betch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 12,972 kB
  • ctags: 5,460
  • sloc: php: 58,989; sh: 298; makefile: 36
file content (24 lines) | stat: -rw-r--r-- 658 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Apache configuration for the backoffice folder

# this will select the default page to be displayed
# if the URL is just .../blogs/b2/
<IfModule mod_dir.c>
	DirectoryIndex index.php
</IfModule>


# edit_actions is performing long operations
# having gzip encoding here would prevent progressive output
# so we want to deactivate this
# NOTE: We still have to configure sending in smaller chunks!
# Anyone know how to do this?? :)
<Files edit_actions.php>
	<IfModule mod_gzip.c>
		mod_gzip_on                   No
	</IfModule>
</Files>
<Files b2mail.php>
	<IfModule mod_gzip.c>
		mod_gzip_on                   No
	</IfModule>
</Files>