1

For a php project, using .htaccess I want to rewrite:

http://localhost/pms/pms.php?sect=add_project_detail&id=7

with:

http://localhost/pms/pms/add_project_detail/7

I use RewriteRule ^pms/(.*)$ pms.php?sect=$1 [PT,L]and it works fine for

http://localhost/pms/pms/add_project_detail 

but what for $id=7

Response back @ Anton:

RewriteRule ^pms/([A-Za-z_-]+)/([0-9]+)$ pms.php?sect=$1&id=$2 is fine for http://localhost/pms/pms/add_project_detail/7 but it stop http://localhost/pms/pms/add_project_detail to work and if i use both RewriteRule ^pms/(.*)$ pms.php?sect=$1 [PT,L] and RewriteRule ^pms/([A-Za-z_-]+)/([0-9]+)$ pms.php?sect=$1&id=$2 no one works

http://localhost/pms/pms/add_project_detail

or

http://localhost/pms/pms/add_project_detail/7

thanks.

1
  • Try without the PT flags perhaps, what do they do? Commented Nov 25, 2011 at 20:59

1 Answer 1

2

Try

RewriteRule ^pms/pms/([A-Za-z_-]+)/([0-9]+)$ pms.php?sect=$1&id=$2
Sign up to request clarification or add additional context in comments.

2 Comments

RewriteRule ^pms/([A-Za-z_-]+)/([0-9]+)$ pms.php?sect=$1&id=$2 is fine for localhost/pms/pms/add_project_detail/7 but it stop localhost/pms/pms/add_project_detail to work and if i use RewriteRule ^pms/(.*)$ pms.php?sect=$1 [PT,L] and RewriteRule ^pms/([A-Za-z_-]+)/([0-9]+)$ pms.php?sect=$1&id=$2 no one works localhost/pms/pms/add_project_detail or localhost/pms/pms/add_project_detail/7
You'll need to use two cases i suppose, the first one being the one i posted with [L] added to it. And the next one your initial one, test that and report back with results :)

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.