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

What is basic php?

1119


How do you clear environment variables?

997


How is the ternary conditional operator used in php?

1060


How can a cross-site scripting attack be prevented by php?

1031


What is composer used for?

1000


What are the advantages and disadvantages of cascade style sheets?

1195


What does $_env means?

984


What is the difference server side and browser side validation?

1062


How to select a database in php?

1135


What is the difference between php 5 and php 7?

1055


How to find the position of the first occurrence of a substring in a string?

1075


What is the use of mvc in php?

1036


What is the use of hooks?

1019


What is move_uploaded_file in php?

1029


What is php and sql?

1172