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
