apache rewrite 重写 字符串解决思路

WBOY
Release: 2016-06-13 10:12:24
Original
853 people have browsed it

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

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!