Is this correct to rewrite and take out the index.php from IPB

PHP Code: 
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteBase 
/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond 
%{REQUEST_FILENAME} !-d
RewriteCond 
%{REQUEST_URI} !\..+$
RewriteRule . /index.php [L]
</
IfModule
site.com/index.php?/forum/01-topic/

should become

site.com/forum/01-topic/
Golden Falcon Reviewed by Golden Falcon on . .htaccess rewrite Is this correct to rewrite and take out the index.php from IPB <IfModule mod_rewrite.c> Options -MultiViews RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !\..+$ RewriteRule . /index.php Rating: 5