我正在尝试将所有 .php 文件转换为使用 .html 扩展名运行,但它给了我404 Page Not found error
:
如果我运行带有 .php 扩展名的文件,它运行良好但不是带有 .html 扩展名,我也检查mod_rewrite is enabled
过。
我安装了 Ubuntu 12 版本和 PHP 5.3。
htaccess 代码如下:
AddHandler application/x-httpd-php .php .html
AddType application/x-httpd-php .html
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteRule ^(.*)\.html$ $1.php [L]
#RewriteCond %{REQUEST_URI} ^(.*)\.php$
#RewriteRule ^(.*) /$1.html [R=301,L]
请帮帮我,怎么了?
谢谢 !