当我键入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]