我使用wordpress cms,我想用php创建一个动态的sitemap.xml页面,但是我有一个问题,规则之间存在冲突,我是htaccess的初学者。该代码不会显示页面sitemap.xml ,但是当我删除完整代码并仅使用此行
时RewriteRule ^sitemap\.xml$ sitemap.php [L]
它的功能。 但此代码上的问题返回页面404,而不返回sitemap.xml
# BEGIN WordPress
Options -Indexes
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /my/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^sitemap\.xml$ sitemap.php [L]
RewriteRule . /my/index.php [L]
</IfModule>
# END WordPress