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

Explain me soundex() and metaphone()?

982


What is form validation in php?

1010


What was the old name of php?

1403


Can we embedded directly PHP code into XHTML document? State Whether True or False?

1782


How do you end a function in python?

1007


What is difference between web service and api?

1033


How to call a php function from html button?

1070


Explain the difference between session and cookies in php?

973


What the limitation of header() function in php?

950


How to Retrieve a Cookie Value?

1198


Can php run on windows server?

1018


Inside a php function, what param needs to be set in order to access a global variable?

958


How to remove the new line character from the end of a text line?

984


Can php replace javascript?

986


How do I run a php script?

1151