Nginx伪静态规则:
| 代码如下 | 复制代码 |
|
rewrite ^([^.]*)/brand.html$ $1/plugin.php?id=sanree_brand last; |
|
httpd.ini
| 代码如下 | 复制代码 |
|
RewriteRule ^(.*)/brand.html(?(.*))*$ $1/plugin.php?id=sanree_brand&$3 |
|
.htaccess
| 代码如下 | 复制代码 |
|
RewriteCond %{QUERY_STRING} ^(.*)$ |
|
httpd.conf
| 代码如下 | 复制代码 |
|
RewriteRule ^(.*)/brand.html?*(.*)$ $1/plugin.php?id=sanree_brand&$2 |
|