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
Answer / vinod ahuja
you need to write URL rewrite rules using .htaccess file
Is This Answer Correct ? | 2 Yes | 0 No |
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 |
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 |
Which php global variable is used for uploading a file?
Is php still relevant 2019?
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?
What is the scope of a variable defined in a function?
What is print_r?
What is a string in php?
Do you know how can we check the value of a given variable is a number?
How to make multilanguage site in php? (like english,tamil)
How can we upload a php + mysql Site
Can anyone explain about join?
Can I learn laravel without php?