目前我像这样使用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
PHP 是否支持这样的处理程序?如果是这样,您能否提供一个链接,我可以在其中看到此类处理程序?(例如 Code Igniter's,如果它存在的话。)
它对SEO方面有什么影响吗?(例如,谷歌忽略/喜欢链接)
谢谢你。