我试图理解为什么它会给我一个内部服务器错误:
RewriteEngine on
rewritecond %{http_host} ^website.ca [NC]
rewriterule ^(.*)$ http://www.website.ca/$1 [R=301,nc]
RewriteRule ^/$ index.php
RewriteRule ^realisations.html$ realisations.php
RewriteRule ^couvreur-toiture/services-de-toiture.html$ services-de-toiture.php
基本上我需要.php文件显示为.html,主要的public_html目录中的某些页面显示为子目录。
我的错误在哪里? 提前谢谢。