我想在.htaccess文件中更改一些规则现在写我的网址就像这样www.example.com/d/somthing.htm以及其他一些网页www.example.com/category.htm现在我要改变以这种方式www.example.com/index.php?d=我必须做的事情。
我目前的.htaccess内容是: -
file3.coffee
答案 0 :(得分:2)
您可以在根.htaccess中使用这两个规则:
DirectoryIndex index.php
RewriteEngine On
RewriteRule ^(?:d/)?(.+?)\.html?$ index.php?d=$1 [L,QSA,NC,R]