apache rewrite 重写 字符串解决思路
程序员文章站
2023-12-26 20:08:39
...
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
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
相关文章
相关视频
推荐阅读
-
apache rewrite 重写 字符串解决思路
-
13个实用的Apache Rewrite重写规则
-
apache(rewrite 对 模块url进行重写),出错:The requested URL *** was not found on this serve
-
APACHE支持.htaccess伪静重写出错 No input file specified的解决方案
-
让Apache支持Rewrite静态页面重写的方法
-
Apache连接PHP后无法启动问题解决思路
-
配置Nginx+PHP的正确思路与过程 nginx apache nginx php nginx rewrite
-
关于服务器的 rewrite解决思路
-
关于服务器的 rewrite解决思路
-
Apache 端口修改解决思路