htaccess - 重写规则以隐藏URL中的详细信息

时间:2017-04-21 14:22:39

标签: .htaccess mod-rewrite url-rewriting

这是我想要修改的当前规则:

.svg:hover .leon,
.svg:hover .right-movment, .svg:hover .left-movment, .svg:hover  .shaddow {
    -webkit-animation-play-state: paused; /* Safari 4.0 - 8.0 */
    animation-play-state: paused;
    cursor: pointer;
}

结果是:

RewriteCond %{REQUEST_URI} m.*
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^m(.*)$ articles.php?$1 

我想得到这个结果:

http://www.mywebsite001.com/m/45/Details-I-Want-To-Hide/

(以斜线结尾)

0 个答案:

没有答案