Not an expert but I believe that you need to enable the RewriteEngine in the mod_rewrite module before adding the Redirect 301 line.
I'm assuming you are using Apache web server and that the Apache module 'mod_rewrite' is already enabled. As an example, in my htaccess I have
Code:
Options +SymLinksIfOwnerMatch
RewriteEngine on
Redirect 301 .....
I rarely use subdirectorys like '/store/ for my sites so I can't be sure as to the correct location for this htaccess, or whether it will rewrite as
creationcassel.com/align or creationcassel.com/store/align
I take more of a trial and error approach if I'm unsure.