Tag: 网址重写

如何在PHP中重写URL?

我正试图在我的PHP应用程序中实现URL重写。 有人可以分享一个在PHP和MySQL中实现URL重写的步骤吗? 在我的应用程序中,我想实现下面的URL重写,我想重定向 1. http://example.com/videos/play/google-io-2009-wave-intro 2. http://example.com/videos/play/203/google-io-2009-wave-intro 至 1. http://example.com/videos/play.php?title=google-io-2009-wave-intro 2. http://example.com/videos/play.php?id=203 请告诉我如何以上述任何方式实现URL重写。 从以下两种类型中,根据搜索引擎优化,管理,应用程序的观点,哪一个URL最好。 1. http://example.com/videos/play/google-io-2009-wave-intro 2. http://example.com/videos/play/203/google-io-2009-wave-intro