标签: .htaccess
我想为以下条件实施htaccess重写
对于网址1,我需要重定向到example.com/param1.php
对于url 2,我需要重定向到example.com/param1/param2.php
如何为这个条件编写htaccess代码??
答案 0 :(得分:0)
RewriteRule ^(param1(/param2)?)$ /$1.php [R=301]