我有两个 URL 缩短脚本我想在同一个域上运行,一切正常,直到 .htacess 使它们工作,我一次只能有一个重写规则,我相信有更多知识的人会知道如何合并这些,以便它们都可以工作。
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !\..+$
RewriteRule ^(.*)$ show.php?id=$1 [L]
而第二个...
# 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