Apache 虚拟目录和默认首页的设置
程序员文章站
2022-11-25 14:55:08
虚拟目录 1.找到"conf/httpd.conf" 文件 2.在节点:里增加 alias /aidd2008 "...
虚拟目录
1.找到"conf/httpd.conf" 文件
2.在节点:<ifmodule alias_module>里增加
alias /aidd2008 "d:/php/web/aidd2008"
其中 aidd2008 是你想要访问的虚拟目录; d:/php/web/aidd2008 为物理路径,以[/]代替[\]"
我们就在</ifmodule>后面接着加:
<directory "d:/php/web/aidd2008">
options indexes multiviews
allowoverride none
order allow,deny
allow from all
</directory>
(*)aidd2008 为虚拟目录名称,一般不用在名称后加"/",若加入,每次都要在虚拟目录后输入"/"才能访问网站
alias /gt "d:/php/gt"
<directory "d:/php/gt">
<ifmodule php5_module>
<files "index.php">
php_admin_flag safe_mode off
</files>
</ifmodule>
allowoverride authconfig
order allow,deny
allow from all
</directory>
3.重启apache
设置默认页面
方法1 设置全局的:
<ifmodule dir_module>
directoryindex index.php index.php4 index.php3 index.cgi index.pl index.html index.htm index.shtml index.phtml default.php
</ifmodule>
方法2 针对某一目录可以这么设置:
alias /aidd2008 "d:/php/web/aidd2008"
<directory "d:/php/web/aidd2008">
options indexes multiviews
allowoverride none
order allow,deny
allow from all
directoryindex default.php
</directory>
1.找到"conf/httpd.conf" 文件
2.在节点:<ifmodule alias_module>里增加
alias /aidd2008 "d:/php/web/aidd2008"
其中 aidd2008 是你想要访问的虚拟目录; d:/php/web/aidd2008 为物理路径,以[/]代替[\]"
我们就在</ifmodule>后面接着加:
复制代码 代码如下:
<directory "d:/php/web/aidd2008">
options indexes multiviews
allowoverride none
order allow,deny
allow from all
</directory>
(*)aidd2008 为虚拟目录名称,一般不用在名称后加"/",若加入,每次都要在虚拟目录后输入"/"才能访问网站
复制代码 代码如下:
alias /gt "d:/php/gt"
<directory "d:/php/gt">
<ifmodule php5_module>
<files "index.php">
php_admin_flag safe_mode off
</files>
</ifmodule>
allowoverride authconfig
order allow,deny
allow from all
</directory>
3.重启apache
设置默认页面
方法1 设置全局的:
复制代码 代码如下:
<ifmodule dir_module>
directoryindex index.php index.php4 index.php3 index.cgi index.pl index.html index.htm index.shtml index.phtml default.php
</ifmodule>
方法2 针对某一目录可以这么设置:
复制代码 代码如下:
alias /aidd2008 "d:/php/web/aidd2008"
<directory "d:/php/web/aidd2008">
options indexes multiviews
allowoverride none
order allow,deny
allow from all
directoryindex default.php
</directory>
上一篇: 使用数据库保存session的方法
下一篇: 西魏废帝元钦最钟情的人是谁?最忠贞的爱情
推荐阅读
-
设置文件的默认程序和添加程序到打开方式的解决办法
-
Linux系统下操作Apache最基本的启动停止和重启命令
-
Apache的fork模式和worker模式判断方法
-
jQuery插件echarts设置折线图中折线线条颜色和折线点颜色的方法
-
SQLServer2012的身份验证方式和权限设置实验分享
-
Excel折线图横坐标设置方法以年份和销售量的数据为例
-
Notepad++怎么配置默认语言?notepad设置默认语言为c和Java语言的方法
-
Linux下的Apache与PHP安全设置技巧
-
apache,nginx上传目录无执行权限的设置方法
-
在Windows的Apache服务器上配置对PHP和CGI的支持