Jump to content

Recommended Posts

Posted

i want to rewrite the url as following ?

http://hamroworld.com/mypage

 

into

 

http://hamroworld.com/profile.php?profile=mypage

 

For example:

if someone enters http://hamroworld.com/mypage

 

he/she should get the content of hamroworld.com/profile.php?profile=mypage

 

How to do this ?please help me here I have headache because of this !

Posted

You can do that at your cpanel. Just look for the link that says Redirects.

 

It should write something like this into your htaccess file:

 

RewriteEngine on
RewriteCond %{HTTP_HOST} ^hamroworld.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.hamroworld.com$
RewriteRule ^mypage$ "http\:\/\/profile\.php\?profile\=mypage" [R=301,L]

 

Posted
You can do that at your cpanel. Just look for the link that says Redirects.

 

It should write something like this into your htaccess file:

 

RewriteEngine on
RewriteCond %{HTTP_HOST} ^hamroworld.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.hamroworld.com$
RewriteRule ^mypage$ "http\:\/\/profile\.php\?profile\=mypage" [R=301,L]

Thanks but i want to rewrite hamroworld.com/anyvariable

to hamroword.com/profile.php?profile=anyvariable

 

It is not only 'mypage'

I waiting for your help again

Posted

Had you done the PHP File?

It should be simple: $_GET['page']

And querying the db for the contents.

Just watch out for vulnerabilities.

You can always learn PHP at http://w3schools.com

 

After checking the website, do you mean more like restricting the pages to friends?

Posted
Had you done the PHP File?

It should be simple: $_GET['page']

And querying the db for the contents.

Just watch out for vulnerabilities.

You can always learn PHP at http://w3schools.com

 

After checking the website, do you mean more like restricting the pages to friends?

Everything done only .htaccess remaining to work for me!

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...