Step 1 - Open up .HTACESS in any file editor.
Step 2 - Depending on where your UploadScript base folder is you'll need to edit accordingly.
Quote
<IfModule mod_rewrite.c>
RewriteEngine On
# Change this to the path to Upload Script
# Use / if US are at the front of your site
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Change it here too
RewriteRule . index.php [L]
</IfModule>
RewriteEngine On
# Change this to the path to Upload Script
# Use / if US are at the front of your site
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Change it here too
RewriteRule . index.php [L]
</IfModule>
The settings above will only work for UploadScript installed in the root of your Public_html folder, or where your site files are. Now lets say your UploadScript is installed in the folder called Uploadscript your settings would look like this.
Quote
<IfModule mod_rewrite.c>
RewriteEngine On
# Change this to the path to Upload Script
# Use / if US are at the front of your site
RewriteBase /uploadscript/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Change it here too
RewriteRule . /uploadscript/index.php [L]
</IfModule>
RewriteEngine On
# Change this to the path to Upload Script
# Use / if US are at the front of your site
RewriteBase /uploadscript/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Change it here too
RewriteRule . /uploadscript/index.php [L]
</IfModule>
Don't forget to save, hope these answered your questions!

Sign In
Register
Help


MultiQuote