10 lines
208 B
ApacheConf
10 lines
208 B
ApacheConf
# BEGIN YOURLS
|
|
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
RewriteBase /
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule ^.*$ /yourls-loader.php [L]
|
|
</IfModule>
|
|
# END YOURLS
|