我在两台不同的机器上运行相同的laravel实例。它们都有相同的.htaccess文件:
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
一个系统运行PHP 5.5,另一个运行PHP 5.4。问题是,这适用于一个系统而不是另一个系统:
http://www.example.com/register
然而,这适用于:
http://www.example.com/index.php/register
有什么可能的htaccess导致它只能与index.php一起使用?我需要它在没有index.php的情况下工作吗?
答案 0 :(得分:1)
如果根网址中的系统之间存在不一致,则可能需要使用RewriteBase /
以上RewriteEngine On