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 compare two strings with comparison operators in php?
Which software is best for php?
Is php a float?
How do you execute a php script from the command line?
What is the meaning of a final class and a final method?
Explain Type juggling?
Explain some of the php string functions?
What is $_session in php?
What is the difference between using copy() and move() function in PHP file uploading?
Who is the father of php and what is the current version of php and mysql?
How can we submit a form without using submit buttons?
What are the main error types in php and how do they differ?