please help my code .htaccess file is #
# Uncomment the statement below if you want to make use of
# HTTP authentication and it does not already work.
# This could be required if you are for example using PHP via Apache CGI.
#
#<IfModule mod_rewrite.c>
#RewriteEngine on
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#</IfModule>
<Files "config.php">
Order Allow,Deny
Deny from All
</Files>
<Files "common.php">
Order Allow,Deny
Deny from All
</Files>
### phpBB MF BEGIN ###
# Try to remove the comment (#) if URL Rewrite is enabled and does not work
#php_value output_buffering on
DirectoryIndex index.php index.html index.htm
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# Remove comments (#) if you would like to use. This will redirect http://yourdomain.com to http://www.yourdomain.com
#RewriteCond %{HTTP_HOST} ^yourdomain\.com
#RewriteRule (.*) http://www.yourdomain.com/$1 [R=301,L]
# Rules for board directory and other pages
RewriteRule ^visit-([0-9]*)(.*).html$ board_directory.php?visit=$1 [L]
RewriteRule ^category-([0-9]*)(.*)-([0-9]*)-([a-zA-Z0-9]*)-([a-zA-Z0-9]*).html$ board_directory.php?page=$3&c=$1&sort_by=$4&order=$5 [L]
RewriteRule ^category-([0-9]*)(.*).html$ board_directory.php?c=$1 [L]
RewriteRule ^board_directory.html$ board_directory.php [L]
RewriteRule ^get-free-forum.html$ signup.php [L]
RewriteRule ^terms.html$ terms.php [L]
RewriteRule ^upgrade-forum.html$ upgrade_forum.php [L]
# Rules for forums
RewriteRule ^(.*)vf([0-9]*).html$ viewforum.php?f=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)vt([0-9]*).html$ viewtopic.php?t=$2&%{QUERY_STRING} [L]
RewriteRule ^vp([0-9]*).html$ viewtopic.php?p=$1&%{QUERY_STRING} [L]
RewriteRule ^(.*)vm([0-9]*).html$ memberlist.php?mode=viewprofile&u=$2&%{QUERY_STRING} [L]
RewriteRule ^search.html$ search.php?%{QUERY_STRING} [L]
RewriteRule ^faq.html$ faq.php?%{QUERY_STRING} [L]
RewriteRule ^memberlist.html$ memberlist.php?%{QUERY_STRING} [L]
RewriteRule ^viewonline.html$ viewonline.php?%{QUERY_STRING} [L]
</IfModule>
### phpBB MF END ###
please help mod-rewrite is enable in our hosting or Not ?