Hy, how can i make canonical URLs (For Facebook "Parsing") with mod_rewrite.

Example: I have: example.com/index.php?page=eventdetails&id=241

I would make an canonincal URL, which should look like this:

example.com/eventdetails/241/some text which would be ignored from script

I tested it with this example, but it doesn't work:

RewriteEngine on
RewriteRule ^/eventdetails/([0-9]+)/$ index.php?show=eventdetails&id=$1

The .htaccess File is in the "home" direction.

I dont find any Solutions for exact this example @google, so i hope someone can help me!

link|improve this question

67% accept rate
feedback

1 Answer

up vote 7 down vote accepted

Try this:

RewriteEngine on
RewriteBase /
RewriteRule ^eventdetails/([0-9]+)/?$ index.php?show=eventdetails&id=$1 [L,NC]
RewriteRule ^eventdetails/([0-9]+)/([a-z0-9\-_]+)/?$ php.php?show=eventdetails&id=$1&name=$2 [L,NC]

The /? means an optinal / at the end. So example.com/eventdetails/241/ and example.com/eventdetails/241 will work for this rule. The first one will only use the first rule if the event name is not use.

And this Url will use the second one (IF the event name is use): example.com/eventdetails/241/event-name/. Now here, I don't recommend the + since it's not really SEO friendly, maybe some will accept it but some not. I recommend the - instead.

I added the L in case you have other rules and NC flag for non-case.

L: The [L] flag causes mod_rewrite to stop processing the rule set. In most contexts, this means that if the rule matches, no further rules will be processed. This corresponds to the last command in Perl, or the break command in C. Use this flag to indicate that the current rule should be applied immediately without considering further rules.

NC: Use of the [NC] flag causes the RewriteRule to be matched in a case-insensitive manner. That is, it doesn't care whether letters appear as upper-case or lower-case in the matched URI.

from: http://httpd.apache.org/docs/2.3/rewrite/flags.html

link|improve this answer
Thank you! It "nearly works", i would add some "random text" at the end of the URL, which contains the "Event Title", it should/can be like this: example.com/eventdetails/43/Brennan+Heart+MCM+Feldbach Thanks again, for your answer, and sorry for my bad english. – Christoph Eder Jan 20 at 0:25
no problem, I updated my answer – Book Of Zeus Jan 20 at 0:30
Thank You! I have forgot to say, the Title can be ignored by the Script, i read the content from the ID. But, i'm a Dummy :-X I solved it this way: RewriteRule ^eventdetails/([0-9]+)/(.*)/?$ index.php?show=eventdetails&id=$1 [L,NC] I hope, this is the "best" way, to do this. Thank you! Chris – Christoph Eder Jan 20 at 0:32
That will work too, but it just allow special characters in your URL like `¼³²¦¬¤¢£@±`. This is why I prefer using the characters I know I will only use. – Book Of Zeus Jan 20 at 0:34
If i would allow Upper/Lower-Case Charakters, Numbers, and following Special-Chars: + - _ I have to do this? -> RewriteRule ^eventdetails/([0-9]+)/([a-zA-Z+\-_]+)/?$ index.php?show=eventdetails&id=$1 [L,NC] – Christoph Eder Jan 20 at 0:38
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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