これが私が必要なものです。私はURLpearlsquirrel.com/profilecomments.php?u=eggoを持っています。eggoは私のユーザー名であり、変更される動的URLの一部です。.htaccessを使用して、URLをpearlsquirrel.com/eggo/commentsと書き直したいと思います。
これが私がこれまでに持っているものです:
RewriteRule ^(.*)$ $1.php
RewriteRule ^([a-zA-Z0-9_-]+)$ profilecomments.php?u=$1
RewriteRule ^([a-zA-Z0-9_-]+)/$ profilecomments.php?u=$1
RewriteCond %{HTTP_HOST} ^www\.pearlsquirrel\.com$ [NC]
RewriteRule ^(.*)$ http://pearlsquirrel.com/$1/comments [L,R=301]
しかし、私はそれを機能させることができません。どんな助けでも大歓迎です。ありがとう!