我已经在服务器中设置了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]