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

How do I debug php?

0 Answers  


When a conditional statement is ended with an endif?

0 Answers  


Explain about objects in PHP?

0 Answers  


what are the errors and when we get that particular errors.and who will give that errors

3 Answers  


Under what circumstance is it impossible to assign a default value to a parameter while declaring a function?

0 Answers  


What are the difference between include_once & Require_once?

2 Answers  


Tell me what is the difference between get and post?

0 Answers  


Do you know is it possible to extend the execution time of a php script?

0 Answers  


Which is best framework for php?

0 Answers  


Do you know how can php and html interact?

0 Answers  


How can I find the width and height of an image resource?

2 Answers   Rushmore Consultancy,


What is alias in php?

0 Answers  


Categories