Web 服务器配置
Posted 骅骝漫轻舞01
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Web 服务器配置相关的知识,希望对你有一定的参考价值。
Apache
确保启用了 mod_rewrite
模块,这样 .htaccess
文件才能被服务器解析。
如果 .htaccess
文件不起作用,尝试下面的方法替代:
Options +FollowSymLinks -Indexes
RewriteEngine On
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
nginx
如果你使用 Nginx ,在你的站点配置中加入以下配置,所有的请求将会引导至 index.php
前端控制器:
location / {
try_files $uri $uri/ /index.php?$query_string;
}
以上是关于Web 服务器配置的主要内容,如果未能解决你的问题,请参考以下文章
Choose unique values for the 'webAppRootKey' context-param in your web.xml files! 错误的解决(代码片段