以下配置的路径以阿里云提供的标准环境路径为准,如果您另行安装,请根据实际安装路径配置。
1.cd /alidata/server/httpd/conf/vhosts/ 进入绑定域名所在目录,
2.vim test.conf 建立一个配置文件,test可以自己命名;
3.点击字母“i”开始编辑文件,输入内容:
<VirtualHost *:80>
documentRoot /alidata/www/phpwind
ServerName localhost
ServerAlias localhost
<Directory "/alidata/www/phpwind">
Options -Indexes FollowSymlinks
AllowOverride all
Order allow,deny
Allow from all
</Directory>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)-htm-(.*)$ $1.php?$2
RewriteRule ^(.*)/simple/([a-z0-9_]+.html)$ $1/simple/index.php?$2
</IfModule>
ErrorLog "/alidata/log/httpd/phpwind-error.log"
CustomLog "/alidata/log/httpd/access/phpwind.log" common
</VirtualHost>
其中:
ServerName 绑定的网站域名
ServerAlias test.com 绑定的网站别名(您如果有多个域名添加在这里)
DirectoryIndex index.html index.php index.htm 设置默认首页
documentRoot /alidata/www/test 和 Directory "/alidata/www/test" 都是指定网站的目录,需要一致。
- 下一篇: WPS表格中如何画虚尾箭头形状
- 上一篇: Win8系统设置IE浏览器平滑滚动效果的方法