Michael Lenaghan
Michael Lenaghan
Since issue references in titles don't turn into links, here's a reference that will: #262.
Anyone minding the store?
Not sure what you mean by "help". :-) I believe the original design of colander (as extensively documented!) is reasonable and correct. I also believe that using `colander.drop` in `default`...
Let me know if you'd like me to tackle this.
As with issue #54, I have to say that this is not about opinion, it's about the right and wrong way to do things. I know that you don't know...
Here's my first pass at a solution: ``` RewriteEngine On RewriteBase / RewriteRule "^$" "index.php" [L] RewriteCond "%{REQUEST_FILENAME}" !-d RewriteCond "%{REQUEST_FILENAME}" !-f RewriteRule "^" "index.php" [L] RewriteCond "%{REQUEST_FILENAME}" -d RewriteRule...
Two other thoughts. First, another option would be to send everything to Automad, whether there's a corresponding physical file or not, and let Automad decide whether or not to present...
Here's my second pass: ``` RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} -d RewriteRule . index.php/_ [L] RewriteCond %{REQUEST_FILENAME} -f RewriteCond %{REQUEST_FILENAME} !(^|/)\.well-known/ RewriteCond %{REQUEST_FILENAME} !(index\.php|robots\.txt|\.(css|gif|ico|jpeg|jpg|js|otf|png|svg|ttf|woff|woff2))$ RewriteRule . index.php/_ [L] RewriteCond...
I'll respond to your comments separately; here's my third pass, which is now in production: ``` RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} -d RewriteRule . index.php/_ [L] RewriteCond %{REQUEST_FILENAME} -f...
Hello, Marc. I've come much further along in my Automad journey. Very impressed. On your comments: * What I really meant was setting up a directory structure a bit more...