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

Which php global variable is used for uploading a file?

0 Answers  


Is php still relevant 2019?

0 Answers  


If the variable $a is equal to 5 and variable $b is equal to character a, what’s the value of $$b? Can anyone explain how's the value of $$b=100

15 Answers   ABC, Asan, Indivar, Swistro Marketing Solutions,


What is the best way to avoid email sent through php getting into the spam folder?

0 Answers  


What is the scope of a variable defined in a function?

0 Answers  


What is print_r?

0 Answers  


What is a string in php?

0 Answers  


Do you know how can we check the value of a given variable is a number?

0 Answers  


How to make multilanguage site in php? (like english,tamil)

2 Answers  


How can we upload a php + mysql Site

1 Answers  


Can anyone explain about join?

3 Answers  


Can I learn laravel without php?

0 Answers  


Categories