我正在尝试重写我的网址www.example.com/storepage.php?name={ANYNUMBER}
我想让网址看起来像这样:www.example.com/store/{ANY NUMBER}
我已经创建了一个.htaccess文件,并且已经提出了这个代码,它是否为我想要实现的目标写错了?
Options +FollowSymlinks
RewriteEngine On # Turn on the rewriting engine
RewriteRule ^storepage/([0-999]+)/?$ storepage.php?name=$1
任何帮助非常感谢