How can i change the extension name like i have a page which
name aboutme.php but i want to show it aboutme.php3 or
aboutme.aspx?
Answer Posted / vipul dalwala
You need to add following lines under <IfModule
mod_mime.c> ......... </IfModule> block.
AddType application/x-httpd-php .php3
AddType application/x-httpd-php .aspx
For example:
<IfModule mod_mime.c>
AddType application/x-httpd-php .php
..................
..................
AddType application/x-httpd-php .php3
AddType application/x-httpd-php .aspx
</IfModule>
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is orm in php framework?
List some array functions in php?
Which will check if a function exists?
What happens if an expected input field was not submitted?
What does the initials of php stand for?
Explain briefly about a search-friendly site looks like?
What does $globals mean?
What is str_replace()?
Why is php used for web development?
What is difference between rest api and restful api?
How to access a specific character in a string using php?
How to write comment in php?
What is the difference between php and cakephp?
Is empty java?
Are php variables global?