友好的网址apache 2.4.18

时间:2017-01-14 17:01:27

标签: php linux apache .htaccess mod-rewrite

我已经在我的linux mint 18.1" Serena"上安装了apache 2.4.18。 ciannon。当我登录系统时,它会将页面留空并且不会加载内容。

  • 我已经激活了mod_rewrite
  • 我已经在apache2.conf和sites-available / 000-default.conf中更改了AllowOverride

    <Directory /var/www/html>
        Options -Indexes +FollowSymLinks +MultiViews
        AddType application/x-httpd-php .php
        AllowOverride None
        Require all granted
    </Directory>
    
  • 系统在我的虚拟主机(Hostagor)

  • 中完美运行
  • 我在Apache中重新启动的每个新更改都可以验证更改...
  • 在Web服务器和本地服务器上,登录页面完美加载并创建链接:system / index.php / auth / login。当我登录时,Web服务器(hostgator)加载地址:mysite.com/system/index.php/并且系统运行,但是在本地服务器上它加载localhost / system / url并且不显示内容。
    • 我决定通过完整的网址在系统中注册新病人www.mysite.com.br / system / patient / new进行测试并将其放在本地服务器上并给出同样的信息,页面变为空白...同时它只有工作并加载内容如果我添加index.php:system / index.php / patient / new

我不知道该怎么做......

这可能是友好网址中的问题吗?

有人可以帮助我吗?

我的htaccess:

    RewriteEngine on  
    RewriteCond $1 !^(index\.php|images|uploads|assets|robots\.txt)     
    RewriteRule ^(.*)$ /system/index.php/$1 [L]   
    DirectoryIndex index.php 

Ps.Sorry我的英语:)

0 个答案:

没有答案