Jump to content
WebFlake
  • 0

Shorting Link


Tragic

Question

4 answers to this question

Recommended Posts

  • 0

AdminCP > System Settings > Search Engine Optimization > Friendly URL Features

 

Set YES to Redirect to new friendly URL format and Redirect to new friendly URL format

 

Now create a file called .htaccess with the following contents:

<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} .*.(jpeg|jpg|gif|png)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . /public/404.php [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

and insert it in the forum path.

Edited by Courage
  • Upvote 1
Link to comment
Share on other sites

  • 0

AdminCP > System Settings > Search Engine Optimization > Friendly URL Features

 

Set YES to Redirect to new friendly URL format and Redirect to new friendly URL format

 

Now create a file called .htaccess with the following contents:

<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} .*.(jpeg|jpg|gif|png)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . /public/404.php [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

and insert it in the forum path.

ok, but i already have something named .htaccess so do i just add on to it or what

Link to comment
Share on other sites

  • 0

ok, but i already have something named .htaccess so do i just add on to it or what

 

Add that code into the file. 

The question(s) in this support topic have been answered and the owner has been able to solve the problem. Because of this, the support topic has been closed and moved.

If you have other questions, please open a new topic.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...