The Lounge

HELP

Submitted by A, , Thread ID: 4500

Thread Closed

RE: HELP

A
User Icon
\(_o)/
Level:
0
Reputation:
206
Posts:
5.52K
Likes:
1.24K
Credits:
50.7K
OP
03-06-2015, 10:15 PM
#11
03-06-2015, 10:12 PM
Kill Wrote:
03-06-2015, 10:11 PM
IsildurBooom Wrote:
-

He didn't say REDIRECT.


03-06-2015, 10:12 PM
Nou4r Wrote:
-

You can do nothing I guess then.

Puuuh idk if its hard to understand or to explain lol

My DOMAIN has many iframes in many posts.

Thoose iframes URL is "yarak.domain.com" but recently the owner changed the yarak.domain.com to domain.com/yarak because he is a fucktard with no life.

Now im sitting here with yarak.domain.com instead of domain.com/yarak on my posts.

RE: HELP

IsildurBooom
Space Monkey!
Level:
0
Reputation:
2
Posts:
141
Likes:
6
Credits:
0
03-06-2015, 10:16 PM
#12
03-06-2015, 10:12 PM
Kill Wrote:
03-06-2015, 10:11 PM
IsildurBooom Wrote:
-

He didn't say REDIRECT.


03-06-2015, 10:12 PM
Nou4r Wrote:
-

You can do nothing I guess then.

lol he said change, after its changed then it redirects. I told him were he could CHANGE it. But I guess im not understanding what exactly he wants to do then so my bad :fp:
Cyberdyne | Gametilt | Ezgamble | Bitsler

RE: HELP

Coin
Level:
0
Reputation:
59
Posts:
1.13K
Likes:
54
Credits:
243
03-06-2015, 10:17 PM
#13
03-06-2015, 10:15 PM
Nou4r Wrote:
-

I understood You. You need to edit each post and give it the proper url.

RE: HELP

A
User Icon
\(_o)/
Level:
0
Reputation:
206
Posts:
5.52K
Likes:
1.24K
Credits:
50.7K
OP
03-06-2015, 10:19 PM
#14
03-06-2015, 10:17 PM
Kill Wrote:
03-06-2015, 10:15 PM
Nou4r Wrote:
-

I understood You. You need to edit each post and give it the proper url.

I can't editk about 5k posts manually, will take to much time.
Better code an script for it, since phpmyadmin can't help out.

I guess in need to wait for @AmN then lol

RE: HELP

IsildurBooom
Space Monkey!
Level:
0
Reputation:
2
Posts:
141
Likes:
6
Credits:
0
03-06-2015, 10:19 PM
#15
03-06-2015, 10:15 PM
Nou4r Wrote:
03-06-2015, 10:12 PM
Kill Wrote:
03-06-2015, 10:11 PM
IsildurBooom Wrote:
-

He didn't say REDIRECT.



03-06-2015, 10:12 PM
Nou4r Wrote:
-

You can do nothing I guess then.

Puuuh idk if its hard to understand or to explain lol

My DOMAIN has many iframes in many posts.

Thoose iframes URL is "yarak.domain.com" but recently the owner changed the yarak.domain.com to domain.com/yarak because he is a fucktard with no life.

Now im sitting here with yarak.domain.com instead of domain.com/yarak on my posts.

Thought you were talking about a website you owned.

~shamefully withdraws from the conversation~
Cyberdyne | Gametilt | Ezgamble | Bitsler

RE: HELP

Coin
Level:
0
Reputation:
59
Posts:
1.13K
Likes:
54
Credits:
243
03-06-2015, 10:20 PM
This post was last modified: 03-06-2015, 10:22 PM by Kill
#16
03-06-2015, 10:16 PM
IsildurBooom Wrote:
-

Mate, redirections has nothing to do with change. Changing/Renaming something WON'T make it redirect.

03-06-2015, 10:19 PM
Nou4r Wrote:
-

Talkingabout a forum You own? If so, I can help with only SQL/PHPMyadmin.

RE: HELP

IsildurBooom
Space Monkey!
Level:
0
Reputation:
2
Posts:
141
Likes:
6
Credits:
0
03-06-2015, 10:38 PM
#17
03-06-2015, 10:20 PM
Kill Wrote:
03-06-2015, 10:16 PM
IsildurBooom Wrote:
-

Mate, redirections has nothing to do with change. Changing/Renaming something WON'T make it redirect.


thats exactly what one of the many purposes of the .htaccess is used for, to redirect to ssl from non-ssl and other way around, changing it on file causes the url to redirect :fp:

Here let me give you an example so that you can understand that what your saying makes absolutely no sense.

# (is not important if comes with or without https):

RewriteCond %{HTTP_HOST} !^www.gaming-evolved.com$ [NC]
RewriteRule ^(.*)$ https://www.gaming-evolved.com/$1 [L,R=301]

# Redirect all non-ssl to ssl.
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://www.gaming-evolved.com/$1 [R,L]

RewriteCond %{HTTP_USER_AGENT} libwww [NC,OR]
RewriteCond %{QUERY_STRING} ^(.*)=http [NC]
RewriteRule ^(.*)$ [F,L]

So changing/Renaming something WILL and canmake a URLredirect elsewhere. Need more examples?

His problem can be solved here or in his C panel if he had a problem with his own website URL, if he wanted to change from sub domain to sub directory
and I thought that was what he was asking help for.

I didn't know he had a problem with another guys URL that he used in his iframes, by the time he specifically said that you already jumped in with your false claims ..

~just to set the record straight~
Cyberdyne | Gametilt | Ezgamble | Bitsler

RE: HELP

Coin
Level:
0
Reputation:
59
Posts:
1.13K
Likes:
54
Credits:
243
03-06-2015, 10:39 PM
#18
03-06-2015, 10:38 PM
IsildurBooom Wrote:
03-06-2015, 10:20 PM
Kill Wrote:
03-06-2015, 10:16 PM
IsildurBooom Wrote:
-

Mate, redirections has nothing to do with change. Changing/Renaming something WON'T make it redirect.


thats exactly what one of the many purposes of the .htaccess is used for, to redirect to ssl from non-ssl and other way around, changing it on file causes the url to redirect :fp:

Here let me give you an example so that you can understand that what your saying makes absolutely no sense.

# (is not important if comes with or without https):

RewriteCond %{HTTP_HOST} !^www.gaming-evolved.com$ [NC]
RewriteRule ^(.*)$ https://www.gaming-evolved.com/$1 [L,R=301]

# Redirect all non-ssl to ssl.
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://www.gaming-evolved.com/$1 [R,L]

RewriteCond %{HTTP_USER_AGENT} libwww [NC,OR]
RewriteCond %{QUERY_STRING} ^(.*)=http [NC]
RewriteRule ^(.*)$ [F,L]

So changing/Renaming something WILL and canmake a URLredirect elsewhere. Need more examples?

His problem can be solved here or in his C panel if he had a problem with his own website URL, if he wanted to change from sub domain to sub directory
and I thought that was what he was asking help for.

I didn't know he had a problem with another guys URL that he used in his iframes, by the time he specifically said that you already jumped in with your false claims ..

~just to set the record straight~


Dude, You're changing the .htaccess, I'm talking about directories, plus You're using Rewrite, which is for redirectins. USE [code < tag.

RE: HELP

IsildurBooom
Space Monkey!
Level:
0
Reputation:
2
Posts:
141
Likes:
6
Credits:
0
03-06-2015, 10:51 PM
#20
03-06-2015, 10:39 PM
Kill Wrote:
03-06-2015, 10:38 PM
IsildurBooom Wrote:
03-06-2015, 10:20 PM
Kill Wrote:
03-06-2015, 10:16 PM
IsildurBooom Wrote:
-

Mate, redirections has nothing to do with change. Changing/Renaming something WON'T make it redirect.


thats exactly what one of the many purposes of the .htaccess is used for, to redirect to ssl from non-ssl and other way around, changing it on file causes the url to redirect :fp:

Here let me give you an example so that you can understand that what your saying makes absolutely no sense.

# (is not important if comes with or without https):

RewriteCond %{HTTP_HOST} !^www.gaming-evolved.com$ [NC]
RewriteRule ^(.*)$ https://www.gaming-evolved.com/$1 [L,R=301]

# Redirect all non-ssl to ssl.
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://www.gaming-evolved.com/$1 [R,L]

RewriteCond %{HTTP_USER_AGENT} libwww [NC,OR]
RewriteCond %{QUERY_STRING} ^(.*)=http [NC]
RewriteRule ^(.*)$ [F,L]

So changing/Renaming something WILL and canmake a URLredirect elsewhere. Need more examples?

His problem can be solved here or in his C panel if he had a problem with his own website URL, if he wanted to change from sub domain to sub directory
and I thought that was what he was asking help for.

I didn't know he had a problem with another guys URL that he used in his iframes, by the time he specifically said that you already jumped in with your false claims ..

~just to set the record straight~


Dude, You're changing the .htaccess, I'm talking about directories, plus You're using Rewrite, which is for redirectins. USE [code < tag.

You said in your previous post "Mate, redirections has nothing to do with change. Changing/Renaming something WON'T make it redirect."

Okay, so I just disproved that statement you made through my statement that changing/renaming something WILL make it redirect. I was talking about the .htaccess so why would you correct me on directories if that was not what I was talking about primarily?
Cyberdyne | Gametilt | Ezgamble | Bitsler

Users browsing this thread: 1 Guest(s)