我在具有以下 htaccess 的服务器上工作:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php
RewriteRule ^[^/]*\.html$ index.php
RewriteRule ^/(typo3|typo3temp|typo3conf|t3lib|tslib|fileadmin|uploads|showpic\.php)/ - [L]
RewriteRule ^/(typo3|typo3temp|typo3conf|t3lib|tslib|fileadmin|uploads|showpic\.php)/.*$ - [L]
现在他们要求我在他们的服务器中准备一个静态页面,我们称之为http://www.myserver.com/mystaticpage.html
问题是当我尝试访问该 url 时,它会重定向到 index.php。我怎样才能改变 htacces 文件来解决这个问题而不会弄乱已安装的 CMS?