当我键入 domain.ca/keyword.html 时,它应该使用 domain.ca/keyword.php 进行渲染,但事实并非如此。这就是我的 htaccess 文件中的全部内容。
Options +FollowSymLinks
Options -Indexes
RewriteEngine On
RewriteBase /
RewriteRule ^(.*)\.html$ $1.php [NC]
RewriteCond %{REQUEST_URI} !^/robots.txt$ [NC]
RewriteCond %{REQUEST_URI} robots\.txt [NC]
RewriteRule .* http://domain.ca/robots.txt [R=301,L]