Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the url of following format http://domainname.com/index.php?r=index/page/pagename1 There are so many urls of above formats

and I want to create the url as

http://domainname.com/pagename.html for each urls, the main important thing, pagename1, pagename2..... is the last index of url, on this case how can i write htacess code so these url formats works on mine.

Please help me, regarding this. Thanks

share|improve this question
6  
What have you tried? See ask advice, please. – John Conde Feb 13 at 15:55

closed as not a real question by phant0m, tereško, Mario, JaredMcAteer, Alex Feb 14 at 0:47

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

If mod_rewrite is on - then can add this to .htaccess

<IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteRule ^(pagename\d*)\.html$ index.php\?r=index/page/$1 

</IfModule>
share|improve this answer

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