当前位置:网站首页 > 软件教程 > 正文

emlog个人博客系统301重定向怎么做?

作者:admin发布时间:2021-11-02分类:软件教程浏览:评论:0


导读:emlog个人博客系统301重定向怎么做?Linux主机Apache服务器Mod-Rewrite模式:修改.htaccess文件 <IfModulemod_rewrite.c>                     

emlog个人博客系统301重定向怎么做?

Linux 服务器 Apache网络服务器 Mod-Rewrite 方式:改动.htaccess文件









 

<IfModule mod_rewrite.c>
                       RewriteEngine on
                       RewriteCond %{HTTP_HOST} ^***.cn$ [NC]
                       RewriteRule ^(.*)$ http://www.***.cn/$1 [R=301]
                       RewriteCond %{REQUEST_FILENAME} !-f
                       RewriteCond %{REQUEST_FILENAME} !-d
                       RewriteBase /
                       RewriteRule . /index.php [L]
                    </IfModule>

Windows 服务器 Apache网络服务器 Mod-Rewrite 方式:改动.htaccess文件

 

 

 

 

 

 

 

 

 

<IfModule mod_rewrite.c>

                       RewriteEngine on

                       RewriteCond %{HTTP_HOST} ^***.cn$ [NC]

                       RewriteRule ^(.*)$ http://www.***.cn/$1 [R=301]

                       RewriteCond %{REQUEST_FILENAME} !-f

                       RewriteCond %{REQUEST_FILENAME} !-d

                       RewriteBase /

                       RewriteRule ^(.*)$ /index.php/$1 [L]

                    </IfModule>


标签:emlog


欢迎 发表评论: