ディレクトリとそのrss/index.php
サブディレクトリ内の .php ファイルを .xml ファイルに書き換えたいのですが、このルールでサイト内の他のディレクトリに影響を与えたくありません。rss/all/index.php
rss/main/index.php
sub directories
すなわち
root/rss/index.php to root/rss/index.xml
と
root/rss/all/index.php to root/rss/all/index.xml
私は mod の書き換えについてあまり知りません。この方法を試してみましたが、何もしません。
RewriteRule ^/rss/.xml$ $1.php [L]
also tried like this
RewriteRule ^(rss).xml$ $1.php [L]
これを行うための可能な方法を見て提案してください。
ありがとう。