我本地使用的的thinkphp的.htaccess文件:
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
服务器上使用的是:
location / {
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php/$1;
}
}
在本地访问:http://domain.com/index.html 正常 (实际访问的是index.php/index.html);
上传到服务器上访问:http://domain.com/index.html
返回500状态码
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
服务器上使用的是:
location / {
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php/$1;
}
}
在本地访问:http://domain.com/index.html 正常 (实际访问的是index.php/index.html);
上传到服务器上访问:http://domain.com/index.html
返回500状态码