时间:2021-07-01 10:21:17 帮助过:20人阅读
当然是可以的咯
  在index.php文件夹内起一个.htaccess文件  
 然后输入  
 
 RewriteEngine on  
 RewriteRule ^index_(.*)\.html  index.php?id=$1 [NC]  
 
 就可以访问 index_12.html 显示 index.php?id=12的内容 
  这些都是http服务器实现的,URL rewrite,不同的有不同的配置方式  
  
 你可以在apache/nginx等的文档中查询。 
ok多谢各位