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 |
Explain php parameterized functions.
Does php support multiple inheritance?
How stop the execution of a php scrip?
What is the current stable version of php?
what are the current or latest versions of LAMP ? Linux, Apache, MySql, PHP
What are the advantages of stored procedures in php?
In php how can you jump in to and out of "php mode"?
Difference among echo, print and printf.
What is framework? How it works? What is advantage?
What are getters and setters php?
What is meant by pear in php? What is the purpose of it?
How can we access the data sent through the url with the post method?