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



How can i change the extension name like i have a page which name aboutme.php but i want to show it..

Answer / vinod ahuja

you need to write URL rewrite rules using .htaccess file

Is This Answer Correct ?    2 Yes 0 No

How can i change the extension name like i have a page which name aboutme.php but i want to show it..

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

How can i change the extension name like i have a page which name aboutme.php but i want to show it..

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

Post New Answer

More PHP Interview Questions

When you will get the error "Cannot add header information"?

2 Answers  


What is php's mysqli extension?

0 Answers  


what are the rules to be followed at the time of declaring a variable?,what is the purpose of var_dump()function in php,syntax of ternary operator()in php,difference between drop a table and truncate a table...

2 Answers  


How to convert any type of video formate in flv formate in php can any buddy give me coding.

1 Answers  


How can you tell if a number is even or odd without using any condition or loop?

0 Answers  






How can you declare a constant variable in php?

0 Answers  


What is the difference between characters 34 and x34?

0 Answers  


Tell us how can we display the output directly to the browser?

0 Answers  


Is it easy to learn php?

0 Answers  


What backslash character will match whitespace?

0 Answers  


How does php session work?

0 Answers  


How would you open a directory for reading in php?

0 Answers  


Categories