Its a query which I guess I have the answer also but its too simple so just wanted to confirm.
I have just implemented urlrewrite for a my website on local host.
Below is one case-
localhost/mywebsite/public_html/promotions.php
is to be rewritten as
localhost/mywebsite/public_html/promotion/
Everything is working except for when I click the link it still shows the old url.
but if I go to public_html/promotion/, it also opens the page.
now the question. rewriting is working but redirecting is not. Or is it as simple as that I go and chnage the url generating code in the website code. The link to promotions is in the home page, so its a code chnage in index.php.
* edit below
the rule: -
RewriteEngine on
RewriteRule ^promotions/?$ promotions.php [NC]