I am using the following to add .php extension in the URL:
RewriteEngine On
RewriteRule ^/?([a-z]+)$ $1.php [L]
For example if the URL is www.doamin.com/create than it will call create.php.
This is working fine, but when I want to call create_new, then it goes wrong. Page give error.
Can somebody help me so both conditions can run simple create and create_add?
add
_to your rule: