Home >Backend Development >PHP Tutorial > htaccess URL重新有关问题

htaccess URL重新有关问题

WBOY
WBOYOriginal
2016-06-13 13:17:43842browse

htaccess URL重新问题

我想要url既支持http://www.xxxx.com/meirong/,又要支持:http://www.xxxx.com/meirong 这两种链接

请问大家这样的伪静态要怎么写?

谢谢先...........

------解决方案--------------------
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^([a-z]+)$ /$1/ [L,NC]

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn