.htaccess の変更に行き詰まっています。少し助けが必要です。
まず、これが私のhtaccessの中身です。
RewriteEngine on
RewriteRule ^(.*)\.html$ $1.php [nc]
たとえば、test.php という名前のファイルを作成し、サーバーにアップロードしました。
サーバーをこのように動作させたいです。
http://example.com/test/test.html -> http://example.com/test/test.html(as it is)
http://example.com/test/test.php -> http://example.com/test/test.html
しかし、私が今持っている .htaccess では、まだ .php と .html の両方があり、Google ロボットのような検索エンジン クローラーによってファイルの複製と見なされる可能性があります (そうではありませんか?)。
どんな助けでも感謝します。