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?
Answers were Sorted based on User's Feedback
Answer / vinod ahuja
you need to write URL rewrite rules using .htaccess file
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / 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 |
Answer / vipul dalwala
This is continuation on my above post.
You need to do above changes in httpd.conf file ( Apache
configuration file ) and after making above chnage restart
apache.
| Is This Answer Correct ? | 1 Yes | 0 No |
Distinguish between urlencode and urldecode?
How would you open a directory for reading in php?
How do you check if a variable has been set in php?
What is stdclass in php?
What is the method to register a variable into a session?
Do while loops php?
The left association operator % is used in PHP for?
How can we know that a session is started or not?
What are examples of independent and dependent variables?
Explain me is multiple inheritance supported in php?
What is mysqli_query?
What is the purpose of the '.myi' file extension? What do thes file contain?