使用.htaccess用_GET重写我的url

时间:2016-08-19 01:36:22

标签: php apache .htaccess mod-rewrite

我正在尝试重写我的网址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    

任何帮助非常感谢

0 个答案:

没有答案