伪静态在php 5.5+以上的安全限制.

AddType video/mp4 mp4
AddType video/webm webm
AddType video/ogg ogv

Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on

# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# otherwise forward it to index.php
RewriteRule . index.php


今天有用户在使用xampps时, 安装程序提示500错误, 通常这种情况是伪静态的问题.
在看到 .htaccess 文件代码时, 即发现问题.


Options 语法不能在用在伪静态文件中. 去掉即可恢复正常.


其中mangento程序也有类似的问题,

你可能感兴趣的:(PHP)