首頁  >  文章  >  後端開發  >  apache rewrite 重写 字符串解决思路

apache rewrite 重写 字符串解决思路

WBOY
WBOY原創
2016-06-13 10:12:24858瀏覽

apache rewrite 重写 字符串
RewriteEngine on
RewriteRule index.html index.php
RewriteRule (\d+) index\.php\?num=student&name=$1


上面是apache rewrite 规则 
我输入
http://127.0.0.1/student/123
正常

但是输入http://127.0.0.1/student/zhangsan
出错。

请问 /htaccess 文件怎么写

------解决方案--------------------

RewriteRule (.*) index\.php\?num=student&name=$1



#or RewriteRule ([0-9A-Za-z]+) index\.php\?num=student&name=$1

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn