phpBB SEO
Boards
Directory  
SEO  
Downloads
  phpBB SEO : Search Engine Optimization, Directory, Forums  
Index
Forums
Annuaire
Référencement
Télécharger
 
  Search Rechercher
    Register
Username :  Password :  Log me on automatically each visit  
S'enregistrer  
 
   
Need help making a rewrite rule

 
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » Apache mod Rewrite
::  
Author Message
emielvenlo
PR0
PR0


Joined: 21 Jan 2007
Posts: 79

Need help making a rewrite rulePosted: Fri Apr 06, 2007 11:40 am    Post subject: Need help making a rewrite rule

I started trying to make my own rewrite mod for a mkportal module that did not have one yet.

I have altered the php code sow that the links are pretty, the only thing left to do is make a RewriteRule. I am trying to convert the following url:
http://testforum.brandpreventieforum.nl/mkportal/modules/docs/sample_1.html
http://testforum.brandpreventieforum.nl/mkportal/modules/docs/index.php?show=sample_1

This was my try:
Code:
RewriteRule ^mkportal/modules/docs/([a-z0-9]+)\.html /mkportal/modules/docs/index.php?show=$1 [QSA,L]     


But it did not work.
Could someone give me the right rule to rewrite the url?
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14403

Need help making a rewrite rulePosted: Fri Apr 06, 2007 11:58 am    Post subject: Re: Need help making a rewrite rule

You just need to add the underscore ("_" => [a-z0-9_]) in the possible matches :

Code:
RewriteRule ^mkportal/modules/docs/([a-z0-9_]+)\.html /mkportal/modules/docs/index.php?show=$1 [QSA,L]


or even :

Code:
RewriteRule ^mkportal/modules/docs/([a-z0-9_-]+)\.html /mkportal/modules/docs/index.php?show=$1 [QSA,L]


To add hyphens ("-").

And if it's a static rewriting (not title injection), then you'd rather go for :

Code:
RewriteRule ^mkportal/modules/docs/sample_([0-9]+)\.html /mkportal/modules/docs/index.php?show=sample_$1 [QSA,L]


The NC tag could be wise to add ([QSA,L,NC]) in case you have to deal with capital letters (sample vs SAMPLE).

++

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Back to top
Visit poster's website
emielvenlo
PR0
PR0


Joined: 21 Jan 2007
Posts: 79

Need help making a rewrite rulePosted: Fri Apr 06, 2007 12:13 pm    Post subject: Re: Need help making a rewrite rule

The first one did the trick Wink
Look at:
http://testforum.brandpreventieforum.nl/mkportal/modules/docs/index.php

Thanks dcz, youre the best!
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14403

Need help making a rewrite rulePosted: Sat Apr 07, 2007 11:10 am    Post subject: Re: Need help making a rewrite rule

Wink

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Back to top
Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » Apache mod Rewrite
Page 1 of 1

Navigation Similar Topics

Jump to: