nlssn I think it would be awesome to have an URL like myflarum.com/my-page but still have it be a "Flarum link".

I don't think this is a problem with sijad's plugin, exactly. It's how core is configured and the plugin just uses that current config.

But this does raise a point that's been bothering me and it does need more consideration in general at the core. It probably needs a ticket raised to bring it to attention, but to get the idea out... Combining a title and ID in a URL is bad. That just makes it way more complicated to change/redirect URLs if a site owner needs to -- and they will. We don't need both in a URL, so it's either one or the other:

  1. title only, like @nlssn is suggesting; e.g. site.tld/p/titles-like-this, or
  2. ID only, e.g. domain.tld/p/12.

I have no problem with the /p/ part of the URL, and I recognise where that's coming from. It's a distinguisher from the other regions of a Flarum site, for example:

  1. discussion: domain.tld/d/...
  2. user profile: domain.tld/u/...
  3. page: domain.tld/p/...
  4. tag: domain.tld/t/...
  5. category: domain.tld/c/... (maybe in the future)

So I doubt those will change, and I think they are important to keep, as kind of site sections.

More important is going either titles or ID only.

Titles look better, and maybe offer an SEO advantage (a different discussion about metadata per individual discussion/page/profiles is warranted), but IDs have the distinct advantage of not breaking links if you change a discussion/page/user title, because the ID doesn't change! This is a major UX deal, because you don't want all your intra-site links breaking when titles change.

Similarly, another poor design aspect of URLs is that when you edit a page or tag title, for example, the URL version also automatically changes, and you have to remember to edit it back if you don't want the actual URL to change too. This is really bad! Once a page or tag (whatever) is originally created, only the readable title should change when edited, and not the URL, or you definitely risk breaking bookmarks that people likely made to your interesting/useful content.

Besides, I rarely want my readable titles to be exactly like my URL-only titles too. This is a more typical example to keep URLs more concise but usable:

  • readable title: Four reasons for defining style and tone
  • url-only title: domain/tld/d/reasons-for-style-tone

So...

  1. Choose a better base URL pattern (either title or ID, but not both).
  2. Remove that annoying auto-change behaviour on published URLs when editing the readable version. (If people need the URL changed too, they can just edit it manually as well, which is much safer to avoid breaking links/bookmarks, and encourages more control over the URL-only titles they want).

Without getting into a different discussion about better metadata handling per content item (i.e. meta-titles, meta-descriptions, etc), using the ID is probably the easier solution (e.g. domain.tld/p/12), but it needs considered one way or the other.

    csf Why is having ID and title in the URL bad? The title is just there for decoration / SEO purposes. You can change it to whatever you want and will still be able to access the thread as long as the ID is there.

    Because we can enforce this with rel=canonical meta tags, Google will always only know about one URL for a discussion, even if a title changes, so this should be fine, right?

      Franz I'm curious too, the only CMS I'm aware using title only is wordpress but I'm not sure it's suitable for forums

        Ah, OK. I wasn't fully cognisant of the URL underpinnings. I was just taking them for face value. Not an issue then. Thanks for the links, @Davis.

        10 days later

        @grantus @Kakifrucht @pwFoo I'm working on dynamic page.

        if you wiling to test it you can upgrade to latest dev version via following command:

        composer require "sijad/flarum-ext-pages":"dev-master"

        a quick reference

        1. create a folder named pages in your flarum root folder.
        2. create php files within pages folder.
          • you can create files in subfolder.
          • files extension should be .php.
        3. you can include created files in admin editor via @include({PATH}) command.
          • {PATH} should be path to the file which placed in pages folder.
          • if you want use blade syntax, file's name should ends with .blade.php.

        Examples

        • path: {FLARUM_ROOT}/pages/mypage.php > @include(mypage.php)
        • path: {FLARUM_ROOT}/pages/subfolder/mypage.php > @include(subfolder/mypage.php)
        • path: {FLARUM_ROOT}/pages/page.blade.php > @include(page.blade.php)

          Think I need an additional option to install your dev version?

            [InvalidArgumentException]                                                                                                                                       
            Could not find package sijad/flarum-ext-pages@dev-master at any version for your minimum-stability (beta). Check the package spelling or your minimum-stability 

            pwFoo sorry, thanks for testing, I updated command in above post. you also can edit your composer.json and change sijad/flarum-ext-pages version to dev-master and then run composer update.

            Tried to change the composer.json and killed my test flarum with the composer upgrade.
            Is there no simple way to install a dev plugins just with a composer command?

              pwFoo composer require "sijad/flarum-ext-pages":"dev-master" didn't work?

              Tested with a new flarum docker container. Installed successful. Thanks

              UPDATE
              Simple test works fine!
              Will try to bootstrap the CMF of my choice inside ?

              sijad Really cool, thanks. Right now one must ensure that the files are in UTF encoding, ANSI will in most cases fail.

              @sijad
              Looks like HTML doesn't work anymore? It outputs the html tags as text.

                pwFoo you mean HTML option in ACP or HTML in php files?

                HTML Option in ACP without php include.

                  Oh wow. I'm going to test this as soon as I can. Thanks! sijad