公告
财富商城
积分规则
提问
发文
2019-09-19 19:01发布
Rolldiameter
Possible Duplicate: mod_rewrite help
Looking to redirect /careers/4/job-title/ to /careers.php?id=4.
/careers/4/job-title/
/careers.php?id=4
Can anyone help?
Put this code in your .htaccess udner DOCUMENT_ROOT:
Options +FollowSymLinks -MultiViews # Turn mod_rewrite on RewriteEngine On RewriteBase / RewriteRule ^careers/([0-9]+)/ careers.php?id=$1 [L,NC,QSA]
最多设置5个标签!
Put this code in your .htaccess udner DOCUMENT_ROOT: