系统相关
首页 > 系统相关> > php – phalcon框架中的友好URL在Ubuntu中不起作用

php – phalcon框架中的友好URL在Ubuntu中不起作用

作者:互联网

我试过这两个代码.但它没有用.它也需要访问公用文件夹.

http://docs.phalconphp.com/en/latest/reference/tutorial.html

#WWW /教程/的.htaccess

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule  ^$public/    [L]
    RewriteRule  (.*) public/$1 [L]
</IfModule>

#WWW /教程/公/的.htaccess

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$index.php?_url=/$1 [QSA,L]
</IfModule>

解决方法:

如果启用了mod_rewrite,我的猜测是你的服务器没有正确设置AllowOverride选项…

默认情况下,所有.htaccess文件都会在apache中被忽略,因为有人可以设法将.htaccess文件上传到您的服务器并覆盖您的服务器配置.如果您确定服务器的文件系统受到保护,则可以在服务器配置中明确指出您的设置可以被目录中的任何.htaccess文件覆盖.

这是通过AllowOverride设置完成的.请参阅this question以了解更多相关信息.

标签:phalcon,htaccess,php,apache
来源: https://codeday.me/bug/20191007/1866214.html