0

目前我像这样使用seo。

PHP: domain.com/index.php?page=account&do=forgotpassword
.htaccess: domain.com/account/forgotpassword.html

但是,我想为它编写自己的处理程序,或者使用任何其他现有的处理程序来执行以下操作。

Handler: Check request URI, convert it back to normal.
--- Request URI: domain.com/?/account/forgotpassword.html
--- Converts to: domain.com/index.php?page=account&do=forgotpassword
.htaccess: RewriteRule (.*)$ ?/$1
  1. PHP 是否支持这样的处理程序?如果是这样,您能否提供一个链接,我可以在其中看到此类处理程序?(例如 Code Igniter's,如果它存在的话。)

  2. 它对SEO方面有什么影响吗?(例如,谷歌忽略/喜欢链接)

谢谢你。

4

1 回答 1

0
  1. PHP没有内置它。但是框架通常有自己的路由(这就是它的名称)库:http ://ellislab.com/codeigniter/user-guide/general/routing.html

  2. Google 不关心重写 url:.htacess或 php 的内容,因为从客户的角度来看绝对没有区别。

于 2013-01-16T00:56:11.863 回答