Im trying to rewrite my url currently www.example.com/storepage.php?name={ANYNUMBER}
I want to make the URL look like this, www.example.com/store/{ANY NUMBER}
I have created a .htaccessfile and have come up with this code, is it written wrong for what i want to achieve ?
Options +FollowSymlinks
RewriteEngine On    # Turn on the rewriting engine
RewriteRule    ^storepage/([0-999]+)/?$    storepage.php?name=$1    
Any help greatly appreciated
