htaccess 实现网址缩短
Posted 稻禾盛夏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了htaccess 实现网址缩短相关的知识,希望对你有一定的参考价值。
访问 :app.xxx.com/a
解析到:app.xxx.com/index.php/app/a
<IfModule mod_rewrite.c> RewriteEngine on RewriteRule http://app.xxx.com http://m.xxx.com RewriteCond %{HTTP_HOST} app.xxx.com RewriteCond %{REQUEST_URI} !^/index\.php RewriteRule ^(.*)$ /index.php/app/$1 </IfModule>
以上是关于htaccess 实现网址缩短的主要内容,如果未能解决你的问题,请参考以下文章