mod重写不使用htaccess重定向

时间:2012-11-05 17:48:14

标签: mod-rewrite url-rewriting

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

0 个答案:

没有答案