Wordpress,在.htaccess中自定义mod_rewrite

时间:2014-03-24 11:09:27

标签: php wordpress apache .htaccess

我想在Wordpress中的.htaccess中添加自己的规则。

我有类似的东西

http://page.com/materialy/?id_s=2&nazwa=stale-niestopowe

我想要这样的事情:

http://page.com/materialy/s/2/stale-niestopowe

我在wp中尝试了一些插件,但它起作用了,因为在我的自定义页面中我使用[insert_php]

如何编辑.htaccess以使其工作?

请帮忙!

1 个答案:

答案 0 :(得分:0)

如果您想手动执行此操作,请按以下步骤操作。

打开 .htaccess 文件并进行编辑。添加这些行

RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)\.html$ /materialy/?id_s=$1&nazwa=$2 [L]

<强>输出:

http://www.page.com/2/stale-niestopowe.html