html共11篇

去掉HTML中的超链接下划线方法

将以下代码复制进文件中即可: <style type='text/css'>a {text-decoration: none}</style>  
凌晨三點十八分的头像-THE FREE SKY凌晨三點十八分3月12日 16:56
02470

Smartideo代码示例

下面是常用的视频链接样式,安装并启用好插件后将如下的视频链接直接复制到文章内容内(单独一行)即可在前端显示出来。 http://v.youku.com/v_show/id_XMTYzNTgxNTMy.html http://www.tudou.co...
俺是农村的い俺家有地的头像-THE FREE SKY俺是农村的い俺家有地7月30日 15:26
06340

Nginx环境下magento2实行静态化的方法

location / { index index.html index.php; ## Allow a static html file to be shown first try_files $uri $uri/ @handler; expires 30d; } location /var/export/ { ## Allow admins only to...
天空的头像-THE FREE SKY天空7月18日 02:23
06940

WordPress Nginx伪静态

先建立一个nginx.conf 文件,然后填入以下内容: location / { index index.html index.php; if (-f $request_filename/index.html){ rewrite (.*) $1/index.html break; } if (-f $request_fil...
七叔的头像-THE FREE SKY七叔7月15日 08:29
05890

VestaCP自定义主机的index.html文件

VestaCP的默认index文件位置为 代码 (Text): /usr/local/vesta/data/templates/web/skel/public_html/index.html 替换掉相应文件即可 调用变量: %domain% ---虚拟主机的域名
一丁的头像-THE FREE SKY一丁9月16日 05:29
07540

vestacp设置默认首页顺序

VestaCP自定义首页访问顺序只需要在网站根目录的.htaccess第一行添加如下代码即可 代码 (Text): DirectoryIndex index.php index.html 特别说明: 1.DirectoryIndex index.php index.html这3个...
一丁的头像-THE FREE SKY一丁9月16日 05:13
07910