Seo 友好的 URL - 怎么做?
Seo friendly URLs - how to?
我有 URL 喜欢 domain.com/profile.php?id=username
,我想将其重写为 domain.com/profile/username
。有人可以帮我吗?我已经尝试过重写它.htaccess,它没有用。
您可以在 DOCUMENT_ROOT/.htaccess
文件中使用此代码:
Options -MultiViews
RewriteEngine On
RewriteBase /
RewriteRule ^profile/(\w+)/?$ profile.php?id= [L,QSA,NC]
我有 URL 喜欢 domain.com/profile.php?id=username
,我想将其重写为 domain.com/profile/username
。有人可以帮我吗?我已经尝试过重写它.htaccess,它没有用。
您可以在 DOCUMENT_ROOT/.htaccess
文件中使用此代码:
Options -MultiViews
RewriteEngine On
RewriteBase /
RewriteRule ^profile/(\w+)/?$ profile.php?id= [L,QSA,NC]