【发布时间】:2018-06-03 10:53:31
【问题描述】:
我需要重写这个网址
category.php?cat=computers
到
category/computers
或者,反过来呢?
如何使用 .htaccess 做到这一点?
【问题讨论】:
标签: php .htaccess mod-rewrite
我需要重写这个网址
category.php?cat=computers
到
category/computers
或者,反过来呢?
如何使用 .htaccess 做到这一点?
【问题讨论】:
标签: php .htaccess mod-rewrite
规则是:
RewriteRule ^category/(.+)/?$ category.php?cat=$1 [NC,L]
您的 .htaccess 应该如下所示:
<IfModule mod_rewrite.c>
#if the name of the php file is the same of the path, you have to remove MultiViews
Options +FollowSymLinks -MultiViews
RewriteEngine on
RewriteRule ^category/(.+)/?$ category.php?cat=$1 [NC,L]
</IfModule>
【讨论】: