I have a very strange problem in my current custom PHP MVC project. If a controller methodname contains show (fx show_album), apache throws a 404 page not found?
Du you have any ideas why this happens?
.htaccess:
#mod_rewrite start
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([a-zA-Z]*)/?([a-zA-Z]*)?/?([a-zA-Z0-9]*)?/?$ index.php?controller=$1&action=$2&id=$3 [QSA,L]
#mod_rewrite end
Btw. it works with normal get request in url (like index.php?controller=profile&action=show_album&id=1