我一直在尝试使用 .htaccess 将 .inc 页面添加为 php 页面,但每次我将其添加到行尾的现有代码中时,它都会下载页面而不是作为 php 文件处理。
我现有的 .htaccess 代码
RewriteEngine on
Options +FollowSymlinks
RewriteBase /
#RewriteRule (mp3|mp3/)$ audio/qari.php [L]
RewriteRule mp3/(.*).mp3 audio/$1.mp3 [L]
RewriteRule ^(.*)(\.)(.*)$ $1$2$3 [L]
RewriteRule ^(.*)$ /index.php [L]
<Files 403.shtml>
order allow,deny
allow from all
</Files>
deny from 67.218.116.130
我尝试在现有代码中添加以下行,但不起作用。
AddType application/x-httpd-php .html .inc .php