htaccess file - any obvious problems with this code?

I am trying to setup a php script called FMYScript, it is provides generic functionality similar to the popular website fmylife. The script comes with an htaccess file which I think primarily is intended to redirect non-explicit links to pages like “login” to the proper files like “login.php”.

For some reason I can’t see to make the htaccess file, any suggestions would be most appreciated!!!

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^signup$ /signup.php
RewriteRule ^account$ /account.php
RewriteRule ^logout$ /logout.php
RewriteRule ^login$ /login.php
RewriteRule ^view/(.)/(.) /view.php?cat=$1&pid=$2
RewriteRule ^category/(.)/(.) /category.php?cat=$1&name=2 RewriteRule ^top /top.php
RewriteRule ^flop$ /flop.php
RewriteRule ^random$ /random.php
RewriteRule ^password$ /password.php
RewriteRule ^confirmemail/(.) /confirmemail.php?code=$1
RewriteRule ^resetpassword/(.
) /resetpassword.php?code=1 RewriteRule ^editaccount /editaccount.php
RewriteRule ^changeemail$ /changeemail.php
RewriteRule ^changepass$ /changepass.php
RewriteRule ^resendconfirmation/(.) /resendconfirmation.php?userid=1 RewriteRule ^favorites /favorites.php
RewriteRule ^members/(.
)/(.*) /memberprofile.php?pid=$1&name=2 RewriteRule ^advanced_search /advanced_search.php
RewriteRule ^moderate$ /moderate.php
RewriteRule ^termsofuse$ /termsofuse.php
RewriteRule ^privacypolicy$ /privacypolicy.php
RewriteRule ^aboutus$ /aboutus.php
RewriteRule ^advertising$ /advertising.php
RewriteRule ^contactus$ /contactus.php
RewriteRule ^mailbox$ /mailbox.php
RewriteRule ^log_out$ /log_out.php
RewriteRule ^man$ /man.php
RewriteRule ^woman$ /woman.php
</IfModule>

<IfModule mod_security.c>

Turn off mod_security filtering.

SecFilterEngine Off

The below probably isn’t needed,

but better ok safe than sorry.

SecFilterScanPOST Off
</IfModule>