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 |
how to use between operator when retrieve from database(format-2008-jun-06)
What is the functionality of md5 function in php?
Explain how we can retrieve the data in the result set of mysql using php?
when ever the user logged in the database table the current registered date will be appeared
What is a class in php programing?
What is button in html?
is anybody upload more than 100mb file using PHP upload script in ONLINE SERVER (using .htaccess file)? please give some idea...
How to Calculate Internal links & External Link in Website.(For Example YAHOO WEBSITE)
Why is facebook still using php?
How can I display text with a php script?
What is the capacity of mysql database?
Explain what is the difference between mysql_fetch_array() and mysql_fetch_assoc()?