貌似确实是新建了与用户ID同名的文件夹,这个用PHP操作也很方便啊,mkdir,不过要注意需要建立文件夹权限

解决方案 »

  1.   

    实际的URL可能类似 http://blog.site.com/user.php?id=001 
    使用apache的mod_rewrite模块,将上述URL映射成类似 http://blog.site.com/user_001 这样子
    apache中的可能的配置类似:
    RewriteRule ^user_(???)$ user.php?id=$1 [P]
      

  2.   

    现在很多的框架都有这个功能,就是所谓的MVC模式,
      

  3.   


    那叫路由和MVC 没有关系,,楼主的那个 完全可以用 rewrite 做到