删除尾部斜杠,强制索引
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了删除尾部斜杠,强制索引相关的知识,希望对你有一定的参考价值。
Removes trailing slashes from URLs, forces all urls to index.php
RewriteCond %{http_host} ^MyExample.com [nc] RewriteRule ^(.*)$ http://www.MyExample.com/$1 [r=301,nc,L] RewriteBase / RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)/$ /$1 [R=301,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L]
以上是关于删除尾部斜杠,强制索引的主要内容,如果未能解决你的问题,请参考以下文章