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

Tell us what is the difference between session_unregister() and session_unset()?

0 Answers  


Why laravel is the best php framework in 2019?

0 Answers  


What is difference between $x and $$x

5 Answers   Mindex, Net Solution, Procon IT Solutions, Trigent,


How does html form submit work?

0 Answers  


Why do we use session?

0 Answers  






hello experts good morning to everyone ! at present am now learning LAMP course sir( linux, apache,mysql and php) after finishing this course can i create my own website without investment is it possible ? please can any one tell sir and also tell me how can i upload my project after finishing the project in internet ? please tell the ways sir please send ur valuable suggestions to kiranpulsar2007@gmail.comcom

1 Answers  


sort term descripttion form, report and uery

0 Answers  


How do I stop php artisan serve in windows?

0 Answers  


How to create an empty array in php?

0 Answers  


What is $_ get and $_ post in php?

0 Answers  


Declare a new variable in php equal to the number 3;

0 Answers  


How to access a global variable inside a function?

0 Answers  


Categories