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 |
How does session work in php?
How long does a session last in php?
How can we find the number of rows in a result set using PHP?
Write a PHP code to print following number pattern: 123 456 789
What is html used for?
What are the functions used in php?
Describe the importance of DABA BASE ABSTRACTION LAYERS in PHP and database connection?
How would you impletement download and upload a file in php
describe arguments in header in php?
What is member function?
How do I clear my browser session?
how to insert, update data in database