【发布时间】:2014-01-15 20:37:43
【问题描述】:
您好,我想知道我会在 .htaccess 中写什么来执行以下操作。
我想要:
profile.php?profile=X9H6W6
重定向到:
/profile/X9H6W6/
不太清楚该怎么做。
【问题讨论】:
标签: apache .htaccess mod-rewrite redirect web
您好,我想知道我会在 .htaccess 中写什么来执行以下操作。
我想要:
profile.php?profile=X9H6W6
重定向到:
/profile/X9H6W6/
不太清楚该怎么做。
【问题讨论】:
标签: apache .htaccess mod-rewrite redirect web
您可以在DocumentRoot/.htaccess 中使用此规则:
RewriteEngine On
RewriteRule ^profile/([^/]+)/?$ /profile.php?profile=$1 [L,QSA]
【讨论】: