I am writing seo url for my website. in homepage everything is fine with all links in menu. after click http://www.example.com/article/article-name i see the content but my menu url also change for that page like www.example.com/article/menuoption1 but actual url is www.example.com/menuoption1 . how i can solve this issue and any other changes required in my code.please help
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^article/([a-zA-Z0-9_-]+) article.php?article=$1 [NC,L]
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^\.]+)$ $1.php [NC,L]