Jump to content

.htaccess on hamroworld.com


Recommended Posts

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 !

Link to comment
Share on other sites

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]

 

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...