dua6992 2013-09-24 16:52
浏览 48
已采纳

在PHP中创建公共配置文件和自定义URL

I'm looking to create a user admin area and public profile page with custom URL in PHP. I have found a great tutorial on users creating their own private admin area. However, I'm struggling to find further guidance on the following:

  1. Creating a public custom URL (such as as website.com/username) based on what the user requested on signup.

  2. Using that custom URL to display public profile page with selected information the user entered into their private admin area.

I know this is bread and butter stuff but I'm leaning PHP so any guidance and best practices at this stage are very welcome.

Thanks, Jack.

  • 写回答

1条回答 默认 最新

  • dongpan1365 2013-09-24 17:15
    关注

    You could try the following:

    1. Use mod_rewrite (assuming you have an Apache server) to forward all domain.com/abcde requests that don't match an existing file or directory (see -f condition) to domain.com/user.php?name=abcde
    2. In user.php, get all the data based on the user-chosen name from the database and display it, display an error message if no user is found.
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分
  • ¥15 delphi webbrowser组件网页下拉菜单自动选择问题
  • ¥15 linux驱动,linux应用,多线程