Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How we can convert dynamic url into static url? plz provide
code.

Answer Posted / udit rawat

Add an .htaccess file(if using apache)

# Turn on URL rewriting
RewriteEngine On

RewriteBase /

# Allow any files or directories that exist to be displayed
directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT,L]
This redirects all urls to index.php. index.php will be some
sort of front controller that loads scripts based on the url

So in your example:

localhost/mywebsite/mypage

Is This Answer Correct ?    3 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Where sessions stored in PHP?

937


How to connect to mysql from a php script?

1002


How to get length of an array in PHP?

969


What is the ioncube php loader?

987


How do you use end in python?

962


What is compact function php?

1002


Which functions are used to remove whitespaces from the string?

1110


Which functions are used to count the total number of array elements in php?

996


How to access a global variable inside a function?

952


What does isset() function?

913


Why namespace is used in php?

951


How to increase the execution time of a PHP script?

988


What do you mean range() in php?

1049


How to read one character from a file?

1043


How can we determine whether a php variable is an instantiated object of a certain class?

918