0

在我的网站上,人们可以发布视频和图片。所有帖子都是这种格式

domain.com/gag/02938482

如何更改帖子的前缀,而不是gag例如p

4

1 回答 1

0

Make sure you have RewriteEngine on in the .htaccess file

RewriteEngine on                                 # Turns the rewrite engine on
RewriteRule ^gag/([^/.]+)/?$ view.php?pid=$1 [L] 
  • ^ start of the string to rewrite
  • gag/
  • ( start of capturing a variable
  • [ start of a character group
  • ^/. anything not equal to / with any character behind it (.)
  • ] end of a character group
  • + one or more of the character(group)
  • ) end of capturing a variable
  • /? zero or more slashes
  • $ end of the string to rewrite
  • view.php?pid= string after rewriting
  • $1 variable 1 (captured with the () )
  • [L] last rule to rewrite
于 2013-03-22T09:40:20.293 回答