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 实现网址缩短的主要内容,如果未能解决你的问题,请参考以下文章

.htaccess 使用 php $_GET 缩短 URL

.htaccess RewriteRule 国家代码和网址

在 Google 表格中取消缩短网址

.htaccess 漂亮的网址,空格?

使用.htaccess实现apache URL重定向

htaccess 重写 URL 以仅删除一个 php 文件的 $_GET 查询[重复]