Resource icon

Route Changer 1.1.3

No permission to download
This addon can rename routes but not completely remove them.

This addon does not allow you to remove ids from member URLs.
You can continue to develop this add to it just like route filters of XenForo 1.2.x

Why Not??
Like the guidance of Roldan with xenforro 1.2

http://xenforo.com/community/threads/route-changer.28814/page-11#post-690946

  • Go to YourForum.com/admin.php?route-filters/
  • Then add new Route Filter just like this:
upload_2013-12-28_19-44-4-png.63757


Yes it works fine without the ID: https://www.phcorner.net/Draft/


Do you think "You will update this addon to alow remove ids from member URL"?.Because "Router fillter" of xenforo 1.2.x can remove ids from member URL.
But,i don't want update my forum from 1.1.x to 1.2.x because some addon which i am using,Xenforo 1.2.x does't have.
 
Last edited:
Why do you deverlop this addon?
I guess that is something well explained at the resource's overview.

You should update this addon to alow remove ids from member URL
Why do you want to remove the IDs? In my humble opinion, that's a bad idea.

Either way, I guess it is more polite to "request" the developer something, not to demand (as in your "should"). ;)
 
I guess that is something well explained at the resource's overview.
Sorry, I wrote wrong, you have misunderstood my mind
I was born in Vietnam, so I do not write good English
I want to say" You can continue to develop this add to it just like route filters of XenForo 1.2.x"

Why Not??

Like the guidance of Roldan
http://xenforo.com/community/threads/route-changer.28814/page-11#post-690946
  • Go to YourForum.com/admin.php?route-filters/
  • Then add new Route Filter just like this:
upload_2013-12-28_19-44-4-png.63757


Yes it works fine without the ID: https://www.phcorner.net/Draft/
Why do you want to remove the IDs? In my humble opinion, that's a bad idea.

Either way, I guess it is more polite to "request" the developer something, not to demand (as in your "should"). ;)
Thank you very much
I'll edit my post
 
That old addon of mine created a "view" route, so this new addon would then not allow you to assign something else to "view".

What if I uninstall your old addon? How do I use route filters to replace the second forums to view like your add on did previously.

EG. domain.com/forums/forums/forum_name to domain.com/forums/view/forum_name
 
Hey so I'm having problems with the whole forums/forums thing.

1) My xenforo install lives in:
mydomain.com/forums/

2) My Announcment Forums currently looks like:
mydomain.com/forums/forums/accouncements.4

3) When changing old route forums -> category I get the following which is good:
mydomain.com/forums/category/accouncements.4

4) But now my forum directory can only be reached at:
mydomain.com/forums/category/
and
mydomain.com/forums/ redirects me to mydomain.com/forums/category which is not what I wanted :( Any ideas? Thanks in advance for the help!

jdN2Azt.png
 
Hi @cmF

If you would like to have:

mydomain.com/forums/forums/accouncements.4

Routed to:

mydomain.com/forums/category/accouncements.4

Then your custom rule should look like:

forums/forums/ -> category

OR

forums/forums/ -> forums/category

Depending on what you would like to achieve. :)
 
@japersonal Thanks for the reply. I thought I tried both of those options but tested it again just in case. As expected, it didn't work. It seems that whenever I introduce slashes to my route changer, NOTHING changes. What could this be a sign of? Mod rewrite rule? But forums -> category works, just not in the right way? Here's what my .htaccess looks like:
Code:
#    Mod_security can interfere with uploading of content such as attachments. If you
#    cannot attach files, remove the "#" from the lines below.
#<IfModule mod_security.c>
#    SecFilterEngine Off
#    SecFilterScanPOST Off
#</IfModule>

ErrorDocument 401 default
ErrorDocument 403 default
ErrorDocument 404 default
ErrorDocument 500 default

<IfModule mod_rewrite.c>
    RewriteEngine On

    #    If you are having problems with the rewrite rules, remove the "#" from the
    #    line that begins "RewriteBase" below. You will also have to change the path
    #    of the rewrite to reflect the path to your XenForo installation.
    #RewriteBase /xenforo

    #    This line may be needed to enable WebDAV editing with PHP as a CGI.
    #RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -l [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^.*$ - [NC,L]
    RewriteRule ^(data/|js/|styles/|install/|favicon\.ico|crossdomain\.xml|robots\.txt) - [NC,L]
    RewriteRule ^.*$ index.php [NC,L]
</IfModule>
 
This addon is deprecated by the route filter feature in XenForo. Use that feature instead.

This addon only does routes. Routes do not have forward slashes in them.
 
Fixed! Thank you so much!

I had no idea this forum/forum fix was a built in feature of Xenforo. I just googled it and came landed on these route switching addons. Maybe the route addon should be gated from download now to prevent further confusion?
 
Last edited:
How do I remove
mydomain.com/forums/forums/accouncements.4

Routed to:

mydomain.com/forums/category/accouncements

I want to remove the postid at the end of the url.

How Do I do that?
 
Top Bottom