Additions:
The settings available in .htaccess are the same as the globally defined ones in
httpd.conf but in .htaccess apply to the local subdirectory and below.
Deletions:
The settings available in .htaccess are the same as the globally defined ones in
httpd.conf but in .htaccess apply to the local subdirectory and below.
Additions:
Enable SSI & XSSI Server Side Includes
Options Includes
AddOutputFilter INCLUDES .html
Additions:
block referers
throw away MS directories
rewrite friendly urls
rewrite friendly urls with multiple parameters
RewriteRule ^tags/(.+)/page/([0-9]+)$ /bbpress/tags.php?tag=$1&page=$2 [L,QSA]
multiviews
Options +
MultiViews
Additions:
apache .htaccess
The settings available in .htaccess are the same as the globally defined ones in
httpd.conf but in .htaccess apply to the local subdirectory and below.
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ wikka.php?wakka=$1 [L]
Deletions:
.htaccess
The settings available in .htaccess are the same as the globally defined ones in
httpd.conf but in .htaccess apply to the local subdirectory and below
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.*/[^\./]*[^/])$ $1/
RewriteRule ^(.*)$ wikka.php?wakka=$1 [QSA,L]
Additions:
The settings available in .htaccess are the same as the globally defined ones in
httpd.conf but in .htaccess apply to the local subdirectory and below
Additions:
.htaccess
### STOP REFERRER SPAM
SetEnvIfNoCase Referer ".*( <nastyword1>[ | ...] ).*" BadReferrer
order deny,allow
deny from env=BadReferrer
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.*/[^\./]*[^/])$ $1/
RewriteRule ^(.*)$ wikka.php?wakka=$1 [QSA,L]
</IfModule>