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

Explain php parameterized functions.

1 Answers  


Does php support multiple inheritance?

1 Answers  


How stop the execution of a php scrip?

1 Answers  


What is the current stable version of php?

0 Answers  


what are the current or latest versions of LAMP ? Linux, Apache, MySql, PHP

4 Answers  


What are the advantages of stored procedures in php?

1 Answers  


In php how can you jump in to and out of "php mode"?

1 Answers  


Difference among echo, print and printf.

1 Answers  


What is framework? How it works? What is advantage?

1 Answers  


What are getters and setters php?

1 Answers  


What is meant by pear in php? What is the purpose of it?

1 Answers  


How can we access the data sent through the url with the post method?

1 Answers  


Categories