如何在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重写。

根据以下两种类型中的SEO,管理,应用程序的观点,哪个URL最好是另一件事。

1. http://example.com/videos/play/google-io-2009-wave-intro

2. http://example.com/videos/play/203/google-io-2009-wave-intro

回答:

通常,这只不过是启用mod_rewrite模块(您可能已经在主机上启用了该模块),然后将.htaccess文件添加到您的Web目录中。完成此操作后,您仅需几行之遥即可完成。上面链接的教程将为您服务。

只是为了好玩,这里有一个Kohana.htaccess文件可以重写:

# Turn on URL rewriting

RewriteEngine On

# Installation directory

RewriteBase /rootDir/

# Protect application and system files from being viewed

RewriteRule ^(application|modules|system) - [F,L]

# Allow any files or directories that exist to be displayed directly

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

# Rewrite all other URLs to index.php/

RewriteRule .* index.php/$0 [PT,L]

这将执行所有请求,并通过index.php文件引导它们。因此,如果您访问了www.examplesite.com/subjects/php,则实际上您可能正在访问www.examplesite.com/index.php?a=subjects&b=php。

如果您发现这些URL具有吸引力,我建议您进一步走一步,并查看MVC框架(模型,视图,控制器)。实际上,它使您可以将网站视为一组功能:

www.mysite.com/jokes

public function jokes ($page = 1) {

# Show Joke Page (Defaults to page 1)

}

或者,www.mysite.com / jokes / 2

public function jokes ($page = 1) {

# Show Page 2 of Jokes (Page 2 because of our different URL)

}

注意第一个正斜杠是如何调用函数的,后面的所有斜杠都填充了该函数的参数。这真的非常好,让网络开发变得更加有趣!

以上是 如何在PHP中重写URL? 的全部内容, 来源链接: utcz.com/qa/422813.html

回到顶部