これには、apacheのmod_rewriteモジュールをインストールする必要があります。次のコードを使用して、必要なことを実現できます。
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^profiles/(.*)?$ profile.php?id=$1
</IfModule>
例:www.yourwebsite.com/profiles/1234-> www.yourwebsitename.com/profile.php?id=1234さらに変数が必要な場合は、上記の行を次のように変更してください。
RewriteRule ^profiles/(.*)/(.*)?$ profile.php?id=$1&var2=$2
.htaccessファイルを編集して上記の行を追加するだけで、変更を加える前に.htaccessのバックアップを作成してください。