我正在尝试将此转换为{a[NR]=$0} END {for(i=NR;i>0;i--)print a[i]}
:index.php?store=abc
,最终意味着如果我的网站就是这样:index.php/abc
但不知何故,我在wampserver上尝试www.mysite.com/abc
,但它无法正常工作
.htaccess
根本不起作用......
我正在尝试通过此代码进行检查
<IfModule mod_rewrite.c>
RewriteCond %{index.php} !-d
RewriteCond %{index.php} !-f
RewriteCond %{index.php} !-l
RewriteCond %{index.php} !^.*\.(jpg|css|js|gif|png)$ [NC]
RewriteRule ^(.+)$ index.php?request=$1 [QSA,L]
</IfModule>