現時点では、wordpress .htaccess ファイルに次のものがあります。
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
ユーザーがhttp://mydomain.com/contact.phpの代わりにhttp://mydomain.com/contactからアクセスできるように書き換えたい contact.php という別の .php ファイルをアップロードしました。
この1 つのファイルのみを書き換えるには、.htaccess ファイルに何を入れる必要がありますか?