I need to change

http://localhost/engineering/management/administrator/modules/course/view.php

to

http://localhost/engineering/course_view.php

I tried the following rewriting

Options +FollowSymlinks
RewriteEngine on
RewriteRule ^engineering/([.*])_([.*])\.php$  /engineering/management/administrator/modules/$1/$2.php

But it does not affect the url. I think the code has some problem.

link|improve this question

40% accept rate
@Pascal MARTIN Still its not working – AGK Jul 22 '11 at 6:04
feedback

2 Answers

up vote 1 down vote accepted

Here we go:

Options +FollowSymlinks
 RewriteEngine on
 RewriteRule ^(.*)_(.*)\.php$ management/administrator/modules/course/view.php

Since you are in localhost and inside the folder engineering, you can omit that in rule. This works only if you place the .htaccess inside the engineering folder.

http://localhost/engineering/course_view.php

Thanks,

Najeem

link|improve this answer
feedback

Just delete '[' ']' from your rule.

RewriteRule ^/engineering/(.*)_(.*)\.php$  /engineering/management/administrator/modules/$1/$2.php

UPD Added '/' at the beginnig of replace pattern.

P.S. Sorry, I can't check this rule myself. Haven't apache installed on my pc.

link|improve this answer
Thanks for your reply , am removing that ,but still its not working – AGK Jul 22 '11 at 5:43
am placing the .htaccess file in the folder engineering – AGK Jul 22 '11 at 5:45
am using wamp server – AGK Jul 22 '11 at 5:45
when am checking the url localhost/engineering/course_view.php "it shows 404 no page found error" – AGK Jul 22 '11 at 5:46
@AGK Check my edit. – rMX Jul 22 '11 at 6:22
show 9 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.