htaccess からすべてのデータを取得したい ばかげたタイプの質問であることはわかっていますが、htaccess ルールのリストからユーザー フレンドリーなリンクのみを取得できるかどうかを知りたいだけです
RewriteRule ^login$ common/login.php [L]
RewriteRule ^forgot-password$ common/forgotpassword.php [L]
RewriteRule ^page/(.*)$ common/page_content.php?pageslug=$1 [L]
RewriteRule ^activate/([a-zA-Z]+)/([0-9]+)/(.*)$ common/activate.php?type=$1&userid=$2&activationcode=$3 [L]
RewriteRule ^forgot-password$ common/forgotpassword.php [L]
このデータを次の形式にしたい
$data->array(); //is array
$data[0] = login common/login.php
$data[1] = forgotpassword common/forgotpassword.php or simlar to this
または、サイト内のすべてのタグをパス名とともに取得する方法を提案してください。htaccess に基づいてサイトマップを動的に構築したい