这是链接http://djmobi.in/?dir=/Mobile_Ringtones&p=1&sort=1/Mobile_Ringtones.html
请告诉我如何从上面的链接中删除?dir= 我想让它看起来像下面的链接,例如。
http://www.finewap.com/Category/9497/Mobile_Ringtones.html
您一定不要想“如何删除?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 之类的每个 url 重定向到http://www.domain.com/index.php?dir=foo (这将是透明的)
这是一个好的开始,我让你搜索一些文档来添加你的页面和排序管理(我们没有足够的数据来给你一个工作代码)