I Use simple configuration in .htaccess file
RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.php -f RewriteRule ^(.*)$ $1.php
It help me to remove .php from pages now i want to get all pages after index like this is my index page https://www.example.com/index if i point to about page it should move after index like this https://www.example.com/index/about also my about page is in same directory kindly Help !
Thanks
https://www.example.com/index/about
should be handled byhttps://www.example.com/index.php/about
? – anubhava