.htaccess url在将php更改为html时重写不起作用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.htaccess url在将php更改为html时重写不起作用相关的知识,希望对你有一定的参考价值。

我希望缩短和清理看起来像urlhttp://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? [复制]

使用 .htaccess 获取友好的 url

wordpress 使用 htaccess 更改为带有变量的友好 URL

PHP .htaccess -> 漂亮的 url(反向)

PHP .htaccess -> 漂亮的 url(反向)

友好的 URL htaccess 重写规则正则表达式 [关闭]