以下是我正在使用的 htaccess 代码。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^admin/([a-z_]+)/?$ admin/index.php?m=$1 [QSA,L]
RewriteRule ^admin/?$ admin/index.php [L]
RewriteRule ^category$ category.php [L]
RewriteRule ^([a-zA-Z0-9_\-]+)$ /user.php?username=$1 [L]
</IfModule>
当任何人访问 URL:http ://www.mydomain.com/category时,它应该被重定向到http://www.mydomain.com/category.php。但上面的代码不符合我的要求。
上面代码中的以下行对我不起作用。
RewriteRule ^category$ category.php [L]
我该怎么做才能让它工作?
请指导我。提前致谢。