acapitalTee
Power Member
- Dec 20, 2012
- 636
- 258
Not quite sure what I need done but I will describe it as best as possible.
I have a script (Movie and Tv Database, MTDb) installed on my domain in root directory. I would like to add a sub-domain or a sub-folder. So it would be mydomain.com/something-else.
Problem is, I cannot add a sub-domain/ sub-folder. Well I can... (file manager in cpanel will allow me to) but I cannot access the url. I get an error message that says "This webpage has a redirect loop."
So I found out that the script does this. The script creator said quote
So this is what I need done.
Here is my .htaccess file
I need to know how to add infinite url's, either all together or one by one. You can either tell me how to do it or I'll do it for you. Will pay $10
I have a script (Movie and Tv Database, MTDb) installed on my domain in root directory. I would like to add a sub-domain or a sub-folder. So it would be mydomain.com/something-else.
Problem is, I cannot add a sub-domain/ sub-folder. Well I can... (file manager in cpanel will allow me to) but I cannot access the url. I get an error message that says "This webpage has a redirect loop."
So I found out that the script does this. The script creator said quote
It will not work by default as the script will handle all requests to the domain, but you could probably create an exception via .htaccess that would ignore certain urls like yoursite.com/sub-folder.
So this is what I need done.
Here is my .htaccess file
Code:
<IfModule mod_rewrite.c> <IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
I need to know how to add infinite url's, either all together or one by one. You can either tell me how to do it or I'll do it for you. Will pay $10