Need some htaccess help

Joomla versions 2.5, 1.7 and 1.6 are all end-of-life since December 31st 2014 and are no longer supported. Please use Joomla 3.x instead.

Moderator: General Support Moderators

Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.
Locked
paimonsoror
Joomla! Apprentice
Joomla! Apprentice
Posts: 6
Joined: Mon Aug 08, 2011 4:34 pm

Need some htaccess help

Post by paimonsoror » Fri Jan 18, 2013 9:05 pm

Hey all, so i decided to really get down and organize my web server.

Code: Select all

Host: hostgator.com
my domain: normalexception.net
Webroot: /public_html

Before:
Had joomla installed directly in /public_html and things got a bit messy because i am also hosting another one of my pages on the same server.

Now:
My Joomla Install: /public_html/normalexception.net/prod_env/joomla/3_0/

So I have set up my htaccess to make sure that when users go to normalexception.net it is properly redirected to the joomla index.php. But I am having another problem that I could use help with. While users are able to get to my site, all of my links are long links that are showing the directory. I know there is a trick to hide the directory structure, but I do not know it :(. For example, if you go to my site, and click on the "Image Gallery" link, it will take you to:

http://www.normalexception.net/[b]norma ... joomla/3_0[/b]/index.php/image-gallery

If possible, I would like to hide the bold part. Here are my two htaccess files:

Webroot htaccess:

Code: Select all

Options +FollowSymLinks

RewriteEngine On

RewriteBase /

RewriteCond %{REQUEST_URI} !(\.|/$)
RewriteRule (.*) http://normalexception.net/$1/ [R=301,L]

#Change http://normalexception.net to http://www.normalexception.net (Optional)
RewriteCond %{HTTP_HOST} ^normalexception.net$
RewriteRule ^/?(.*)$ http://www.normalexception.net/$1 [R=301,L]

#### Rewrites http://www.normalexception.net/subdir to http://www.normalexception.net/
## Added this to allow existing files and directories to work
RewriteCond %{REQUEST_URI} !^(/menalto|/redmine) [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
## Now the rewrite of subdir to rootdir
RewriteCond %{REQUEST_URI} !^/normalexception\.net/prod_env/joomla/3_0
RewriteRule ^$ normalexception\.net/prod_env/joomla/3_0/index.php [L] 

RewriteCond %{REQUEST_URI} !^(/menalto|/redmine) [NC]
RewriteRule ^(.*)$ normalexception\.net/prod_env/joomla/3_0/$1 [L]

RewriteCond %{REQUEST_URI} !^/normalexception\.net/prod_env/joomla/3_0
RewriteCond %{REQUEST_URI} !^(/menalto|/redmine) [NC]
RewriteRule ^(.*)$ normalexception\.net/prod_env/joomla/3_0/$1 [L]
Joomla Root htaccess

Code: Select all

##
# @package		Joomla
# @copyright	Copyright (C) 2005 - 2012 Open Source Matters. All rights reserved.
# @license		GNU General Public License version 2 or later; see LICENSE.txt
##

##
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
#
# The line just below this section: 'Options +FollowSymLinks' may cause problems
# with some server configurations.  It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file.  If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url's.  If they work,
# it has been set by your server administrator and you do not need it set here.
##

## Can be commented out if causes errors, see notes above.
Options +FollowSymLinks

## Mod_rewrite in use.

RewriteEngine On

## Begin - Rewrite rules to block out some common exploits.
# If you experience problems on your site block out the operations listed below
# This attempts to block the most common type of exploit `attempts` to Joomla!
#
# Block out any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block out any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL.
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Return 403 Forbidden header and show the content of the root homepage
RewriteRule .* index.php [F]
#
## End - Rewrite rules to block out some common exploits.

## Begin - Custom redirects
#
# If you need to redirect some pages, or set a canonical non-www to
# www redirect (or vice versa), place that code here. Ensure those
# redirects use the correct RewriteRule syntax and the [R=301,L] flags.
#
## End - Custom redirects

##
# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Joomla! Directory (just / for root).
##

RewriteBase /normalexception\.net/prod_env/joomla/3_0

## Begin - Joomla! core SEF Section.
#
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
#
# If the requested path and file is not /index.php and the request
# has not already been internally rewritten to the index.php script
RewriteCond %{REQUEST_URI} !^/index\.php
# and the request is for something within the component folder,
# or for the site root, or for an extensionless URL, or the
# requested URL ends with one of the listed extensions
RewriteCond %{REQUEST_URI} /component/|(/[^.]*|\.(php|html?|feed|pdf|vcf|raw))$ [NC]
# and the requested path and file doesn't directly match a physical file
RewriteCond %{REQUEST_FILENAME} !-f
# and the requested path and file doesn't directly match a physical folder
RewriteCond %{REQUEST_FILENAME} !-d
# internally rewrite the request to the index.php script
RewriteRule .* index.php [L]
#
## End - Joomla! core SEF Section.

# Use PHP 5.3
AddType application/x-httpd-php53 .php
Thanks guys!!

paimonsoror
Joomla! Apprentice
Joomla! Apprentice
Posts: 6
Joined: Mon Aug 08, 2011 4:34 pm

Re: Need some htaccess help

Post by paimonsoror » Sat Jan 19, 2013 2:19 am

ah, mods can go ahead and close this thread. I'm a doofus and forgot to update the site variable in the config file.

bleucamaro
Joomla! Fledgling
Joomla! Fledgling
Posts: 4
Joined: Tue Jan 29, 2013 7:17 pm

Re: Need some htaccess help

Post by bleucamaro » Fri Feb 01, 2013 8:02 pm

I am trying to do very similar as you and receiving an "Invalid Token" error when logging in from the front end.

My webroot/.htaccess file looks nearly identical to yours (from: http://www.simplyraydeen.com/report-car ... bdirectory )

Code: Select all

 
Options +FollowSymLinks
RewriteEngine On

RewriteBase /

# Add trailing slash if path does not contain a period or end with a slash
RewriteCond %{REQUEST_URI} !(\.|/$)
RewriteRule (.*) http://domain.com/$1/ [R=301,L]

#Change http://domain.com to http://www.domain.com (Optional)
#RewriteCond %{HTTP_HOST} ^domain.com$
#RewriteRule ^/?(.*)$ http://www.domain.com/$1 [R=301,L]
#### Rewrites http://www.domain.com/subdir to http://www.domain.com/
## Added this to allow existing files and directories to work
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
## Now the rewrite of subdir to rootdir
RewriteCond %{REQUEST_URI} !^/joomla
RewriteRule ^$ joomla/index.php [L]

RewriteRule ^(.*)$ joomla/$1 [L]
 

RewriteCond %{REQUEST_URI} !^/joomla
RewriteRule ^(.*)$ joomla/$1 [L]

My /joomla/.htaccess file looks nearly identical to yours with exception of the

Code: Select all

# Use PHP 5.3
AddType application/x-httpd-php53 .php
reference:

Code: Select all

##
# @package		Joomla
# @copyright	Copyright (C) 2005 - 2012 Open Source Matters. All rights reserved.
# @license		GNU General Public License version 2 or later; see LICENSE.txt
##

##
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
#
# The line just below this section: 'Options +FollowSymLinks' may cause problems
# with some server configurations.  It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file.  If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url's.  If they work,
# it has been set by your server administrator and you do not need it set here.
##

## Can be commented out if causes errors, see notes above.
Options +FollowSymLinks

## Mod_rewrite in use.

RewriteEngine On

## Begin - Rewrite rules to block out some common exploits.
# If you experience problems on your site block out the operations listed below
# This attempts to block the most common type of exploit `attempts` to Joomla!
#
# Block out any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block out any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL.
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Return 403 Forbidden header and show the content of the root homepage
RewriteRule .* index.php [F]
#
## End - Rewrite rules to block out some common exploits.

## Begin - Custom redirects
#
# If you need to redirect some pages, or set a canonical non-www to
# www redirect (or vice versa), place that code here. Ensure those
# redirects use the correct RewriteRule syntax and the [R=301,L] flags.
#
## End - Custom redirects

##
# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Joomla! Directory (just / for root).
##

RewriteBase /joomla/

## Begin - Joomla! core SEF Section.
#
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
#
# If the requested path and file is not /index.php and the request
# has not already been internally rewritten to the index.php script
RewriteCond %{REQUEST_URI} !^/index\.php
# and the request is for something within the component folder,
# or for the site root, or for an extensionless URL, or the
# requested URL ends with one of the listed extensions
RewriteCond %{REQUEST_URI} /component/|(/[^.]*|\.(php|html?|feed|pdf|vcf|raw))$ [NC]
# and the requested path and file doesn't directly match a physical file
RewriteCond %{REQUEST_FILENAME} !-f
# and the requested path and file doesn't directly match a physical folder
RewriteCond %{REQUEST_FILENAME} !-d
# internally rewrite the request to the index.php script
RewriteRule .* index.php [L]
#
## End - Joomla! core SEF Section.
When I updated the configuration.php file
from:

Code: Select all

public $live_site = 'http://domain.com/joomla/';
to:

Code: Select all

public $live_site = 'http://domain.com/';
logging in from the front end causes "Invalid Token" error.

Any help would be appreciated.


Locked

Return to “Installation Joomla! 2.5”