How to redirect index to index.php? (with .htaccess) -
this question has reply here:
htaccess (no redirection) [rewriteurl] (folder index.php) 4 answersbut want every page redirect page.php example:
me -> me.php
blog -> blog.php
test -> test.php
i don't know if redirect right word because want phone call x , open x.php don't show extension (.php)
hope can help me.
thanks
create .htaccess file , set in it:
rewriteengine on rewritecond %{request_filename} !-d rewritecond %{request_filename}\.php -f rewriterule ^(.*)$ $1.php that way, urls such domain.com/blog, silently append .php file name (ie loading blog.php).
php .htaccess
No comments:
Post a Comment