Tragic Posted February 15, 2014 Share Posted February 15, 2014 Hey, So I have a question how would i make mysite.net/index.php?/shoutbox or mysite.net/index.php?/members into mysite.net/shoutbox or mysite.net/members ive seen it on other ipb sites so how do i do it? Link to comment Share on other sites More sharing options...
0 Courage Posted February 15, 2014 Share Posted February 15, 2014 (edited) 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 February 15, 2014 by Courage 1 Link to comment Share on other sites More sharing options...
0 -Cookie- Posted February 15, 2014 Share Posted February 15, 2014 Edit: The guy above me, beat me to it Link to comment Share on other sites More sharing options...
0 Tragic Posted February 15, 2014 Author Share Posted February 15, 2014 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 More sharing options...
0 Kingy Posted February 16, 2014 Share Posted February 16, 2014 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 More sharing options...
Question
Tragic
Hey,
So I have a question
how would i make mysite.net/index.php?/shoutbox or mysite.net/index.php?/members
into mysite.net/shoutbox or mysite.net/members
ive seen it on other ipb sites so how do i do it?
Link to comment
Share on other sites
4 answers to this question
Recommended Posts