本文介绍了使用的.htaccess我怎样才能改变一个网址?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我要显示的网址

  http://www.example.com/about-us.php?p=ceo-greeting
 

  http://www.example.com/about-us/ceo-greeting
 

我该怎么办所以使用的.htaccess

解决方案

  RewriteEngine叙述上

重写规则^关于美国/(.*)/about-us.php?p=$1
 

I want to show the URL

http://www.example.com/about-us.php?p=ceo-greeting

as

http://www.example.com/about-us/ceo-greeting

How can I do so using .htaccess?

解决方案
RewriteEngine On

RewriteRule ^about-us/(.*) /about-us.php?p=$1

这篇关于使用的.htaccess我怎样才能改变一个网址?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-11 05:34