.htaccess url在将php更改为html时重写不起作用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.htaccess url在将php更改为html时重写不起作用相关的知识,希望对你有一定的参考价值。
我希望缩短和清理看起来像url
的http://www.example.com/qB/index.html?sch=paramname
看起来像http://www.example.com/schedule/paramname
这怎么可能 ?
我有这个规则
RewriteRule ^schedule/?$ http://www.example.com/qB/?sch=$1 [NC,L]
但它不起作用。
答案
请尝试以下代码:
RewriteEngine On
RewriteRule ^schedule/([^/]*)/?$ /qB/index.html?sch=$1 [L]
以上是关于.htaccess url在将php更改为html时重写不起作用的主要内容,如果未能解决你的问题,请参考以下文章
使用 .htaccess 将 web Url 更改为另一个 Url? [复制]