我在htaccess中有这个
RewriteEngine On
RewriteRule ^records$ records.php [L]
RewriteRule ^records/$ records.php [L]
RewriteRule ^records/pro$ records_pro.php [L]
RewriteRule ^records/pro/$ records_pro.php [L]
Rewriterule ^records/pro/player/(.*?).html$ records_mpro.php?name=$1 [L]
Rewriterule ^records/pro/map/(.*?).html$ records_mapro.php?map=$1 [L]
RewriteRule ^records/pro/totales$ records_qpro.php [L]
RewriteRule ^records/pro/totales/$ records_qpro.php [L]
除/records
和/records/
重写
有什么想法吗?我不能让它发挥作用
答案 0 :(得分:1)
请试试这个。并确保records.php
与htaccess
RewriteEngine On
Rewriterule ^records/pro/player/(.*?).html$ records_mpro.php?name=$1 [L]
Rewriterule ^records/pro/map/(.*?).html$ records_mapro.php?map=$1 [L]
RewriteRule ^records/pro/totales(/?)$ records_qpro.php [L]
RewriteRule ^records/pro(/?)$ records_pro.php [L]
RewriteRule ^records(/?)$ records.php [L]