php本地域名解析怎么设置
php本地环境搭建完成之后都会php本地域名解析,那么怎么样进行PHP域名解析?下面是我给大家整理的一些有关php本地域名解析设置教程,希望对大家有帮助!
php本地域名解析设置教程
打开系统盘,默认是C:WindowsSystem32driversetc,如果系统盘是D盘就打开D:WindowsSystem32driversetc,如下图所示:
用记事本打开hosts,如下图所示:
打开之后默认如下,不太一样也不要在意。因为这个有可能不相同的'。
如下图在下面回车之后输入127.127.1.1,这是本地的意思,空一格后打上12hqf.,这个是我ID拼音的首字简写(12黄奇锋),完成后保存一下。
在地址栏中输入12hqf.就可以打开自己本地的网站了。也可以设置很多个。
php只是用来做解读程序的
需要通过入 nginx、apache、apache来解析域名到指定文件夹
server {listen 80
server_name 域名
root "目录"
location / {
index index.html index.htm index.php
#autoindex on
try_files $uri /index.php$uri
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last
break
}
}
location ~ \.php(.*)$ {
fastcgi_pass 127.0.0.1:9000 #php端口默认9000
fastcgi_index index.php
fastcgi_split_path_info ^((?U).+\.php)(/?.+)$
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name
fastcgi_param PATH_INFO $fastcgi_path_info
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info
include fastcgi_params
}
}
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)