現在、私はこのような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 が存在する場合)
SEO面への影響はありますか?(例: Google はリンクを無視/いいね)
ありがとうございました。