index共13篇

Openlitespeed WordPress .htaccess

# BEGIN WordPress RewriteEngine On RewriteBase / RewriteRule ^/index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L]...
在路上的头像-THE FREE SKY在路上10月14日 14:21
02330

Helpdesk Apache / Nginx静态化方法

Apache RewriteEngine ON RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.php [L] ErrorDocument 404 /404/   Nginx location / { index ...
在路上的头像-THE FREE SKY在路上5月26日 09:41
03540

WordPress主题自动给图片添加Alt标签

    /** 自动给图片添加Alt标签 */ function image_alt_tag($content){ global $post;preg_match_all('/<img (.*?)\/>/', $content, $images); if(!is_null($images)) {foreach...
基督山伯爵的头像-THE FREE SKY基督山伯爵1月6日 01:24
02150

Xenforo Nginx Apache 靜態化

location ~ \.php$ { try_files $uri =404; include /etc/nginx/fastcgi_params; fastcgi_pass unix:/run/php/php7.0-fpm.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_...
Burn的头像-THE FREE SKYBurn3月18日 18:44
04350

Chevereto Nginx 伪静态规则

location / { if (-f $request_filename/index.html){ rewrite (.*) $1/index.html break; } if (-f $request_filename/index.php){ rewrite (.*) $1/index.php; } if (!-f $request_filename){...
在路上的头像-THE FREE SKY在路上3月4日 02:37
06037

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

全球各大搜索引擎、獨立博客提交入口。

搜狗URL提交:http://zhanzhang.sogou.com/index.php/urlSubmit/index 360URL提交:http://zhanzhang.so.com/?m=PageInclude&a=index 百度搜索網址提交入口:http://zhanzhang.baidu.com/si...
のphpミ的头像-THE FREE SKYのphpミ5月18日 21:07
011860

Nginx以及单页面http自动跳转https方法

在配置80端口的文件里面,写入以下内容即可。 server { listen 80; server_name localhost; rewrite ^(.*)$ https://$host$1 permanent; location / { root html; index index.html index.htm; ...
七叔的头像-THE FREE SKY七叔10月28日 06:32
09580

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