伪静态规则在线转换工具适用于Apache,Lighttpd,IIS,Nginx环境下Rewrite伪静态规则,可正向或反向转换。测试效果一般般,转换结果不是100%正确,需要自行调整。
支持Apache,Lighttpd,IIS,Nginx转Nginx,或反转换。
Wordpress
RewriteRule ^store-([0-9]+).html$ store.php?id=$1
Wordpress, Magento, Discuz!X
rewrite ^/(.*)([^/])$ http://$host/$1$2/ permanent; if (!-e $request_filename) { return 404; }
Discuz!X
<rule name="forum_viewthread"> <match url="^(.*/)*thread-([0-9]+)-([0-9]+)-([0-9]+).html?*(.*)$" /> <action type="Rewrite" url="{R:1}/forum.php?mod=viewthread&tid={R:2}&extra=page%3D{R:4}&page={R:3}&{R:5}" /> </rule>