如何在Apache中为自动子域删除index.php

时间:2019-04-23 17:51:48

标签: apache ubuntu server subdomain

我已经在服务器中设置了auto子域,但是并没有自动删除项目中的index.php。

示例: sub1.mydomain.com/contact-me:找不到。 sub1.mydomain.com/index.php/contact-me:可以,但不正确。

我的配置:

    ServerName mydomain.com
    ServerAlias *.mydomain.com
    DocumentRoot "/var/www/html/sub"
    ErrorLog /home/wewe/logs/%1_error.log
    TransferLog /home/wewe/logs/%1_access.log
   <Directory /var/www/html/sub >
            Options  Includes FollowSymLinks
            AllowOverride None
            Order allow,deny
            Allow from all
   </Directory>
    RewriteEngine on
    RewriteCond /var/www/html/sub/%1 -d
    RewriteRule ^(.*) /%1/$1 [L]

错误图片: https://imgur.com/vWqRUQQ

0 个答案:

没有答案