【问题标题】:changing link url using .htacces使用 .htaccess 更改链接 url
【发布时间】:2012-07-31 03:20:31
【问题描述】:

这是链接http://djmobi.in/?dir=/Mobile_Ringtones&p=1&sort=1/Mobile_Ringtones.html

请告诉我如何从上面的链接中删除 ?dir= 我想让它看起来像下面的链接,例如。

http://www.finewap.com/Category/9497/Mobile_Ringtones.html

【问题讨论】:

标签: .htaccess url hyperlink


【解决方案1】:

你不能想“如何删除?dir=”的方式,而是“使用哪个链接而不是这个复杂的链接”。

这是您需要的.htaccess 的亲属:

RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f

RewriteRule   ^([A-Za-z0-9-]+)\.html$    index.php?dir=$1 [L]

这个.htaccess 会将http://www.domain.com/foo.html 之类的每个网址重定向到http://www.domain.com/index.php?dir=foo(这将是透明的)

这是一个好的开始,我让你搜索一些文档来添加你的页面和排序管理(我们没有足够的数据给你一个工作代码)

【讨论】:

猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2018-06-16
  • 1970-01-01
  • 2017-01-30
  • 1970-01-01
相关资源
最近更新 更多