次の書き換えルールがあります
<filesMatch "^(member)$">
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^/(.*)/(.*)/(.*)$ /member-profile.php?ID=$2 [L]
</filesMatch>
<filesMatch "^(community-events)$">
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^/(.*)/(.*)/(.*)/(.*)$ /community-events.php?ID=$3 [L]
</filesMatch>
つまり、明らかにこれを書き直しています
mydomain.com/comunity-events/category/id/name
これに
mydomain.com/comunity-events.php?myvariables
さて、このように、開始「フォルダー」を持たない新しいリダイレクトが必要です
mydomain.com/business-category/business-name
に
mydomain.com/business-profile.php?variables
各カテゴリ名のリダイレクトを行わずに、現在の構成を考えると、それは可能ですか?