我想重写URL.htaccess在php http://www.domain.com/door?door=french-



请帮我用。htaccess重写URL

 http://www.domain.com/door?door=casement-doors 

 http://www.domain.com/door/casement-doors.

在你的htaccess中试试:

RewriteEngine on
RewriteCond %{QUERY_STRING} ^door=([^&]+) [NC] 
RewriteRule ^door /door/%1? [NC,L,R]

相关内容

  • 没有找到相关文章

最新更新