什么是错误的htaccess

时间:2016-03-30 07:28:39

标签: .htaccess

我有以下htaccess规则,但我不知道如何使它工作:

RewriteEngine on 
RewriteRule ^game/([^/]*)$ index.php?cash=$1

以下是我的文件夹结构的屏幕截图:

enter image description here

有人可以告诉我如何让它发挥作用吗?我也尝试过:

RewriteRule ^index.php([^/]*)$ index.php?cash=$1

我要显示的网址是:http://localhost/biteep/game/100,而我希望浏览器访问的网址是http://localhost/biteep/game?cash=100

2 个答案:

答案 0 :(得分:1)

尝试将重写基础放入.htaccess:

RewriteBase /biteep/

这条路线应该足够了:

RewriteRule ^game\/(\d+)$ index.php?cash=$1

答案 1 :(得分:0)

所以当我这样做时它会起作用

RewriteEngine on 
RewriteRule ^([0-9]+)$ index.php?cash=$1