Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm making my personal CMS. I want to use in it cool (friendly) URLs. This is my .htaccess file code :

RewriteEngine on
RewriteBase /
DirectoryIndex index.php

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^([a-zA-Z-_0-9_/]+)/?$ index.php?args=$1 [L]

I see that on Stack Overflow are also used friendly URLs. Today I tried to make error on Stack Overflow. To (for example) this URL http://stackoverflow.com/questions/5469955/htaccess-url-rewrite-if-file-not-exists I added .php. But I didn't seen 404 Error. Our forum in a magic method deleted my postscript and redirected me back to correct site URL. And my question is : How can I make he same in my CMS ? I tried to change this (RewriteRule ^([a-zA-Z-_0-9_/]+)/?$ index.php?args=$1 [L]) line to (RewriteRule ^([a-zA-Z-_0-9_/]+)/([a-zA-Z-_0-9)$ index.php?args=$1 [L]), but this isn't helpful and then I see 500 Internal Server Error.

Thanks for any help and suggestions,

PS

If you need more inforamtion about my issue please write in comment

share|improve this question

1 Answer

up vote 1 down vote accepted

If you need to have same behavior like SO then you got to have some server side support (e.g. PHP, ASP etc) as well. Consider following code snippet:

.htaccess:

RewriteRule ^([^/]+)/([^/]+)/?$ /index.php?id=$1&title=$2 [L,NC,QSA]

index.php:

<?php
   $id    = $_GET['id'];
   $title = $_GET['title'];

   $dbTitle = // get title from Database query using $id
   ...
   if ($title != $dbTitle) {
      // redirect with 301 to correct /<id>/<title> page
      header ('HTTP/1.1 301 Moved Permanently');
      header('Location: /' . $id . '/' . $dbTitle);
      exit;
   }
   // rest of your script
?>
share|improve this answer
what are NC and QSA flags ? – Ty221 Feb 11 at 16:56
1  
NC - No Case Comparison and QSA - Query String Append. Pls check this official docs: httpd.apache.org/docs/current/rewrite/flags.html – anubhava Feb 11 at 16:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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