我一直在尝试使用.htaccess文件来处理类似.
PHP文件的.HTML文件,我使用了以下内容,这两个文件都不起作用并且尝试访问测试页面让我可以选择下载文件不存在,有什么想法吗?
原文链接:https://www.f2er.com/php/134855.html试过这两个;
AddType application/x-httpd-PHP .html .htm AddType application/x-httpd-PHP5 .html .htm
想法是允许包含在我的网页中但仍然使用.HTML文件.
下面是我的.htaccess文件中的一些代码,我不认为它搞乱了addType但我会发布它.
## hide .html extension # To externally redirect /dir/foo.html to /dir/foo RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.html [NC] RewriteRule ^ %1 [R,L,NC] ## To internally redirect /dir/foo to /dir/foo.html RewriteCond %{REQUEST_FILENAME}.html -f RewriteRule ^ %{REQUEST_URI}.html [L]
1and1已决定只允许我使用以下代码执行此操作;
AddHandler x-mapp-PHP5 .html .htm