0

我想添加以下内容...

AddType: application/pdf
AddType: application/doc
AddType: application/docx
AddType: application/ppt
AddType: application/ppptx
AddType: application/pps
AddType: application/ppsx
AddType: application/odt
AddType: application/xls
AddType: application/xlsx
AddType: application/rar
AddType: application/zip

...到下面的 htaccess 代码,因此我网站上的用户上传的文件将在浏览器中打开,而不是自动下载。当我将此添加到 wordpress 中的 htaccess 代码时,我不断收到错误:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>


# END WordPress
4

1 回答 1

0

如果您使用的是 APACHE SERVER 而不是 XAMPP、LAMP 或 WAMP 等,那么您需要按照以下步骤操作。 Here is the solutions.

Step -1 : Run this command. sudo apt-get install libapache2-mod-php5

Step -2: Enable it. sudo a2enmod php5

Step-3 : Restart apache. sudo service apache2 restart 安装后,您的网站将正常运行。

注意:如果这不能满足您的要求,请分享您使用的服务器,然后我也可以提供合适的解决方案。谢谢,

于 2015-03-27T11:10:07.127 回答